search for: sv2

Displaying 20 results from an estimated 23 matches for "sv2".

Did you mean: sv
2008 Aug 06
4
Experience moving mailboxes from Dovecot 0.99.14 to Dovecot 1.07 => Improvement possible
Hi, This small mail to share my observation about a recent move of mailboxes between two servers and ask about explanation and/or improvement about UIDL in dovecot. SV1 : Dovecot 0.99.14 / Red Hat Fedore Core 4 SV2 : Dovecot 1.07 / CentOS 5.2 Mailboxes in /var/spool/mail on the twoo servers. Test will be done with outlook express with option "leave message on server" checked. Goal is simply to move users mailboxes from SV1 to SV2 without re-downloading all messages. Try 1: - Stop dovecot on SV2 -...
2020 Feb 25
0
Replication failing with Win 2012 R2 (maybe)
.../lib/samba/sysvol/my.orgname.tld/scripts read only = False [sysvol] path = /var/lib/samba/sysvol read only = False ===== repadmin /showrepl (on the Windows DC ?vdcw00?) C:\Windows\system32>repadmin /showrepl Repadmin: running command /showrepl against full DC localhost sv2\VDCW00 DSA Options: IS_GC Site Options: (none) DSA object GUID: 8061349d-41dc-48d6-b782-d30b7bf9627d DSA invocationID: 82dd2ddf-1f5f-4dd6-acfd-4fa18fc8c4f0 ==== INBOUND NEIGHBORS ====================================== DC=my,DC=orgname,DC=tld sv2\CDCX17 via RPC DSA object GUID: 79f10c50-...
2003 Oct 17
2
nlm, hessian, and derivatives in obj function?
...running nlsystemfit models test at end...") data( kmenta ) attach( kmenta ) ##demand2 <- q ~ d0 + d1 * p + d2 * d supply2 <- q ~ s0 + s1 * p + s2 * f + s3 * a ##system2 <- list( demand2, supply2 ) ##labels <- list( "Demand", "Supply" ) ##inst <- ~ d + f + a ##sv2 <- c(d0=3,s2=2.123,d2=4,s0=-2.123,s3=4.234,d1=4.234,s1=0.234) sv2 <- c(s0=-2.123,s1=0.234,s2=2.123,s3=4.234) obj <- function( s, eqn, data, parmnames ) { ## get the values of the parameters for( i in 1:length( parmnames ) ) { name <- names( parmnames )[i] val <-...
2008 Jan 16
1
Error in plot.new() : figure margins too large
Hi I am getting error : Error in plot.new() : figure margins too large Can you please help -----code is ------------------------------------------------------------ temp <- seq(5500000/2, 22000000, 5500000/2) sV2 <- c(1, 1+temp[-length(temp)]) eV2 <- temp i=1 bitmap(paste("c:/vidhu/poster/poster_56half_2", LETTERS[i], ".png", sep = ""), "png256", width = 55.5, height = 8.875, res = 300) par(mfrow = c(28,1), mar = c(0.5,3,0.5,0.5), mgp = c(2,0.65,0)) for(i...
2003 Sep 30
1
can't get names from vector in nlm calls
...;- lhs[[i]] - rhs[[i]] r <- rbind( r, as.matrix( residi[[i]] ) ) } ## blah, blah, blah.... knls <- obj } print( "calling nlstest" ) demand2 <- q ~ d0 + d1 * p + d2 * d supply2 <- q ~ s0 + s1 * p + s2 * f + s3 * a system2 <- list( demand2, supply2 ) sv2 <- c(d0=3,d2=4,d1=4.234,s0=-2.123,s2=2.123,s3=4.234,s1=0.234) ### call the nlm function to get the estimates... estnew <- nlm( knls, sv2, hessian=TRUE, print.level=1, eqns=system2, data=kmenta, fitmethod="OLS" ) My question is why can't I simply call names on the vector (sv2)...
2003 Oct 06
1
getting names of p vector in nlm function...
...;- lhs[[i]] - rhs[[i]] r <- rbind( r, as.matrix( residi[[i]] ) ) } ## blah, blah, blah.... knls <- obj } print( "calling nlstest" ) demand2 <- q ~ d0 + d1 * p + d2 * d supply2 <- q ~ s0 + s1 * p + s2 * f + s3 * a system2 <- list( demand2, supply2 ) sv2 <- c(d0=3,d2=4,d1=4.234,s0=-2.123,s2=2.123,s3=4.234,s1=0.234) ### call the nlm function to get the estimates... estnew <- nlm( knls, sv2, hessian=TRUE, print.level=1, eqns=system2, data=kmenta, fitmethod="OLS" ) My question is why can't I simply call names on the vector (sv2)...
2003 Dec 02
0
names of parameters from nonlinear model?
I've been trying to figure out how to build a list of terms from a nonlinear model (terms() returns a error). I need to compute and evaluate the partial derivatives (Jacobian) for each equaiton in a set of equations. For example: > eqn <- q ~ s0 + s1 * p + s2 * f + s3 * a > sv2 <- c(d0=3,d1=4.234,d2=4,s0=-2.123,s1=0.234,s2=2.123,s3=4.234) > names( sv2 ) [1] "d0" "d2" "d1" "s0" "s2" "s3" "s1" ...after some processing.... > sv2 d0 d2 d1 s0 s2 s3...
2014 Jan 21
2
Re: [PATCH] builder: proper consider subkeys in index files
...->subkey : ""); > > > > Store_field (v, 1, sv); > > Heh, sure would be nice if this was an option type :-) > > I believe the following should work: > > (1) Change CAMLlocal4 (..) at the top of the function to: > > CAMLlocal5 (rv, v, sv, sv2, fv); > > (2) Then the new code is: > > if (fields->subkey) { /* Some subkey */ > sv2 = caml_copy_string (fields->subkey); > sv = caml_alloc (1, 0); > Store_field (sv, 0, sv2); > } else /* None...
2014 Jan 21
3
[PATCH] builder: proper consider subkeys in index files
The index files already allowed the 'key[subkey]=...' syntax for keys, but considering such string as whole key. Proper split the parsing and the handling of the subkeys, so they can be searched a bit easier. This causes no actual behaviour changes, it is just internal micro-refactoring. --- builder/index-parser-c.c | 8 +++++--- builder/index-scan.l | 9 ++++++++-
2014 Jan 21
0
Re: [PATCH] builder: proper consider subkeys in index files
...+ sv = caml_copy_string (fields->subkey ? fields->subkey : ""); > Store_field (v, 1, sv); Heh, sure would be nice if this was an option type :-) I believe the following should work: (1) Change CAMLlocal4 (..) at the top of the function to: CAMLlocal5 (rv, v, sv, sv2, fv); (2) Then the new code is: if (fields->subkey) { /* Some subkey */ sv2 = caml_copy_string (fields->subkey); sv = caml_alloc (1, 0); Store_field (sv, 0, sv2); } else /* None */ sv = Val_int (0); Store_field (...
2011 Jun 30
0
Specifying State Space model to decompose structural shocks
...R, using the package 'dlm'. This model has two observation equations and three state equations. Each observation equation represents structural shocks based on SVAR for country i, where i=1 to 2. The structural shocks (S1 and S2) are to be decomposed into common (sv1) and country-specific (sv2, sv3) shocks. We are interested only in the coefficient of common shock. Moreover, the transition equation is represented as a random noise. Observation equation: S1=c(1)*sv1+sv2 S2=c(2)*sv1+sv3 Transition equation: sv1=(variance=1) sv2=(c(3)) sv3=(c(4)) The variance (of the region-specific sh...
2010 Apr 21
4
scaling up puppetmasterd by cloning puppetmasterd
...ate validation failed; consider using the certname configuration option err: //Node[xen-pup-dash]/common/File[/home/scripts]: Failed to retrieve current state of resource: Certificates were not trusted: hostname was not match with the server certificate Could not describe / files/server-configs/eqx-sv2/common/home/scripts: Certificates were not trusted: hostname was not match with the server certificate at / etc/puppet/manifests/eqx-sv2/production/classes/common.pp:251 notice: //Node[xen-pup-dash]/common/Remote_file[/home/scripts/ update.whoami.sh]/File[/home/scripts/update.whoami.sh]: Dependency...
2014 Jan 21
0
[PATCH] builder: proper consider subkeys in index files
.../builder/index-parser-c.c b/builder/index-parser-c.c index 17e680b..fbbebff 100644 --- a/builder/index-parser-c.c +++ b/builder/index-parser-c.c @@ -49,7 +49,7 @@ value virt_builder_parse_index (value filenamev) { CAMLparam1 (filenamev); - CAMLlocal4 (rv, v, sv, fv); + CAMLlocal5 (rv, v, sv, sv2, fv); struct section *sections; size_t i, nr_sections; @@ -83,11 +83,18 @@ virt_builder_parse_index (value filenamev) for (j = 0, fields = sections->fields; fields != NULL; j++, fields = fields->next) { - v = caml_alloc_tuple (2); + v = caml_alloc_tuple (3);...
2018 Jul 04
1
appearing in Icecast directory when changing stream provider
...streaming provider radionomy. In radionomy I have access to nothing but the stream link http://listen.radionomy.com/onstreet The thing is we are leaving radionomy for another stream provider. How to keep appearing in Icecast directory then ? The only thing my provider gave me is this link http://sv2.vestaradio.com/ONSTREET (sometimes it makes wrong redirection though, according to muses radio player team I can use that link too http://149.202.186.135/ONSTREET) Of Course I don't use centova cast but my stream provider's own manager (which certainly runs under centova itself but I can...
2014 Apr 22
3
[PATCH 1/2] builder: add an optional suffix string for INI parsing errors
...mdname, value arg) Noreturn; extern int do_parse (struct parse_context *context, FILE *in); value -virt_builder_parse_index (value progv, value filenamev) +virt_builder_parse_index (value progv, value error_suffixv, value filenamev) { CAMLparam2 (progv, filenamev); CAMLlocal5 (rv, v, sv, sv2, fv); @@ -58,6 +58,7 @@ virt_builder_parse_index (value progv, value filenamev) parse_context_init (&context); context.program_name = String_val (progv); context.input_file = String_val (filenamev); + context.error_suffix = String_val (error_suffixv); in = fopen (String_val (file...
2018 Jul 07
0
appearing in Icecast directory when changing stream provider
...nothing but the stream link > > http://listen.radionomy.com/onstreet > > > > The thing is we are leaving radionomy for another stream provider. How > to > > keep appearing in Icecast directory then ? The only thing my provider > gave > > me is this link http://sv2.vestaradio.com/ONSTREET (sometimes it makes > > wrong redirection though, according to muses radio player team I can use > > that link too http://149.202.186.135/ONSTREET) > > > > Of Course I don't use centova cast but my stream provider's own manager > > (whic...
2014 Mar 19
7
[PATCH 1/3] builder: make the C index parser reentrant
...#include "index-struct.h" #include "index-parse.h" -extern FILE *yyin; +extern int do_parse (struct parse_context *context, FILE *in); value virt_builder_parse_index (value filenamev) @@ -52,26 +52,30 @@ virt_builder_parse_index (value filenamev) CAMLlocal5 (rv, v, sv, sv2, fv); struct section *sections; size_t i, nr_sections; + struct parse_context context; + FILE *in; - yyin = fopen (String_val (filenamev), "r"); - if (yyin == NULL) + parse_context_init (&context); + + in = fopen (String_val (filenamev), "r"); + if (in == NULL...
2018 Jul 30
5
[RFC][SVE] Supporting SIMD instruction sets with variable vector lengths
...et the starting element for the second subvector > %ec = mul i64 %vscale64, 2 > %ec.ins = insertelement <scalable 2 x i64> undef, i64 %ec, i32 0 > %ec.splat = shufflevector <scalable 2 x i64> %9, <scalable 2 x i64> undef, <scalable 2 x i32> zeroinitializer > %sv2 = add <scalable 2 x i64> %ec.splat, %stepvec64 > ;; Perform the extracts > %res1 = shufflevector <scalable 4 x double> %in, <scalable 4 x double> undef, <scalable 2 x i64> %sv1 > %res2 = shufflevector <scalable 4 x double> %in, <scalable 4 x double> u...
2015 Jul 08
7
[PATCH 0/6] RFC: basic subscription-manager support in virt-customize
Hi, this series introduces a basic support for registering/attaching/unregistering RHEL guests using subscription-manager, so it is possible to do for example: $ cat <<EOF > sm.conf [general] username=user password=pass [attach-0] pool=ID EOF $ virt-customize -a rhel-guest.qcow2 \ --sm-config sm.conf --sm-register --sm-attach 0 \ --install pkg1 --install pkg2
2002 Sep 23
19
Call for testing for 3.5 OpenSSH
OpenBSD tree is heading into a lock and this includes OpenSSH. So we are winding up for a 3.5 release. If we can get people to test the current snapshots and report any problems that would improve the odds that your platform won't be broke for 3.5. Issues I know off of right now. 1. I can't test NeXT. So I TRULY need someone in that community to test for me. Last I heard there was