search for: w3

Displaying 20 results from an estimated 1208 matches for "w3".

Did you mean: w3c
2019 Mar 14
2
Dovecot logrotation - old journal files are still in use
<div xmlns="http://www.w3.org/1999/xhtml">Hi all</div><div xmlns="http://www.w3.org/1999/xhtml"> </div><div xmlns="http://www.w3.org/1999/xhtml">Cannot understand, does it a bug or just a misconfiguration. In my Dovecot there are 3 files of logging (debug, info and .log)&l...
2012 Feb 15
3
Samba domain member server using only nss ldap
I have NT4 domain on samba-3.x integrated with LDAP. I need to use domain users in the shares permissions On the domain member server I have the following smb.conf [global] workgroup = W3 server string = File server netbios name = FS1 security = domain load printers = no show add printer wizard = no printcap name = /dev/null disable spoolss = yes log file = /var/log/samba/samba.log max log size = 50000 encrypt passwords = yes winbind t...
2015 Feb 19
2
[LLVMdev] ScheduleDAGInstrs computes deps using IR Values that may be invalid
...BB#14 and BB#15 into BB#16. It's clear that there are 4 common instructions (marked with an *) in BB#14 and BB#15: -------------------------------------------------------------------------------- BB#14: derived from LLVM BB %if.end.1 Live Ins: %X16 %X17 %X18 %X7 %X0 %X6 %X4 %W8 %X15 %X14 %W3 %W2 %X1 %X10 %X11 %X12 %X13 %X9 Predecessors according to CFG: BB#12 %X5<def> = ADDXrr %X16, %X13 * %W19<def> = LDRBBui %X5, 1; mem:LD1[%scevgep95](tbaa=<0x6e02518>) * %W3<def> = MADDWrrr %W2<kill>, %W3<kill>, %WZR * %W2<def> =...
2010 Feb 03
0
Can compile idmap_passdb as shared module
Hi all, I have CentOS-5.4 box with all updates.I want to use samba as PDC with ldap backend. All works fine, except winbind daemon. My samba version is 3.4.5. # winbindd -D -d 3 # wbinfo -i test test:*:50001:513:test:/home/W3/test:/bin/false all fine, but in log file I get the following error [2010/02/02 17:16:55, 3] winbindd/idmap.c:302(idmap_init_domain) idmap backend passdb not found [2010/02/02 17:16:55, 5] lib/module.c:111(smb_probe_module) Probing module 'passdb' [2010/02/02 17:16:55, 5] lib/module.c:130...
2014 Sep 02
3
[LLVMdev] LICM promoting memory to scalar
....arch armv8-a+fp+simd .file "test.cpp" .text .align 2 .global _Z3fooii .type _Z3fooii, %function _Z3fooii: .LFB0: .cfi_startproc cbz w0, .L1 adrp x6, globalvar add w5, w0, w0, lsr 31 ldr w3, [x6,#:lo12:globalvar] <== hoist load of globalvar mov w2, 0 asr w5, w5, 1 .L4: cmp w5, w2 add w2, w2, w1 add w4, w3, w1 csel w3, w4, w3, hi cmp w2, w0 bcc .L4 str w3, [x6,#:lo12:globalv...
2014 Sep 02
2
[LLVMdev] LICM promoting memory to scalar
...at google.com> wrote: > > The problem here is that doing this can introduce a race which is undefined at the IR level. > In the example you gave above I suspect that this is a bug in GCC. I may have missed something in the assembly, but it appears that gcc loads a copy of globalvar in w3, does stuff with w3 and then stores w3 in globalvar. This is unsound in the case where the loop is run with n = 0. > For an example, if you have a thread run foo(0,0) in a loop (so not doing anything) and another thread doing: > for (int i = 0 ; i <1000000 ; ++i) { > globalvar = i;...
2012 Nov 28
1
Help setting optimization problem to include more constraints
...200 from point 2 to destination 2 and so on, and the cost of this distribution plan is $1150. However, I would like to add the following two constraints: # 1. weighted sums by column # w is a vector of known constants, i.e., w = c(1.2, .9, .7, 2.3) # r is also known, i.e., r = 4 w1*x11 + w2*x21 + w3*x21 + w4*x41 == r # col 1 w1*x12 + w2*x22 + w3*x32 + w4*x42 == r # col 2 w1*x13 + w2*x23 + w3*x33 + w4*x43 == r # col 3 # 2. By column, the number of X's greater than zero should be two or greater. In this small example, this condition is satisfied, but I would like to make sure...
2008 Mar 22
1
Simulating Conditional Distributions
...rying to simulate data from a conditional distribution, and haven't been able to modify my existing code to do so. I searched the archives, but didn't find any previous post that matched my question. n=10000 pop = data.frame(W1 = rbinom(n, 1, .2), W2 = runif(n, min = 3, max = 8), W3 = rnorm(n, mean=0, sd=2)) pop = transform(pop, A = rbinom(n, 1, .5)) pop = transform(pop, Y = rbinom(n, 1, 1/(1+exp(-(1.5*A-.05*W1-2*W2-2*W3+2*A*W1))))) In this population the probability of being "diseased" (Y=1) is approx 0.030. What I want to be able to do is specify a condit...
2012 Jan 29
1
Samba member server creates sambaDomainName LDAP entry
...increasing rlimit_max (1024) to minimum Windows limit (16384) Processing section "[install]" Loaded services file OK. Server role: ROLE_DOMAIN_MEMBER Press enter to see a dump of your service definitions [global] dos charset = cp866 unix charset = utf8 display charset = utf8 workgroup = W3 server string = File server 2 security = DOMAIN passdb backend = ldapsam:"ldap://pdc.w3.lan/" client NTLMv2 auth = Yes log level = 3 log file = /var/log/samba/samba.log max log size = 50000 name resolve order = wins bcast hosts deadtime = 15 socket options = TCP_NODELAY SO_SNDBUF=8192 SO_...
2014 Sep 03
3
[LLVMdev] LICM promoting memory to scalar
...set <morisset at google.com> wrote: The problem here is that doing this can introduce a race which is undefined at the IR level. In the example you gave above I suspect that this is a bug in GCC. I may have missed something in the assembly, but it appears that gcc loads a copy of globalvar in w3, does stuff with w3 and then stores w3 in globalvar. This is unsound in the case where the loop is run with n = 0. For an example, if you have a thread run foo(0,0) in a loop (so not doing anything) and another thread doing: for (int i = 0 ; i <1000000 ; ++i) {     globalvar = i;     assert(glob...
2000 Oct 30
7
Source RPM please
Hi, I''m a long ext3 user (rpmfind.net). I propagated ext3 on some of our server box (W3C webservers are ext3 based too now). I might be tempted of testing out your kernel RPMs but unavailability or the source RPM and the SMP version are definite showstoppers. Please provide them. In the meantime I will stick to my own set of kernel ext3 RPMs at ftp://rpmfind.net/pub/veillard/ext3/ D...
2008 Apr 05
2
How to improve the "OPTIM" results
...),log(c(10,.05,.05))) # initial value(In fact, true parameter value) n = length(x) fr2 = function(theta) { a1 = theta[1]; a2 = theta[2] mu1 = theta[3]; mu2 = theta[4]; mu3 = theta[5] g1 = theta[6]; g2 = theta[7]; g3 = theta[8] w1=exp(a1)/(1+exp(a1)+exp(a2)) w2=exp(a2)/(1+exp(a1)+exp(a2)) w3=1-w1-w2 obj =((w1^2)/(2*sqrt(exp(g1)*pi)) + (w2^2)/(2*sqrt(exp(g2)*pi)) + (w3^2)/(2*sqrt(exp(g2)*pi)) + 2*w1*w2*dnorm((mu1-mu2)/sqrt(exp(g1)+exp(g2)))/sqrt(exp(g1)+exp(g2)) + 2*w1*w3*dnorm((mu1-mu3)/sqrt(exp(g1)+exp(g3)))/sqrt(exp(g1)+exp(g3)) + 2*w2*w...
2008 Apr 05
2
How to improve the "OPTIM" results
...),log(c(10,.05,.05))) # initial value(In fact, true parameter value) n = length(x) fr2 = function(theta) { a1 = theta[1]; a2 = theta[2] mu1 = theta[3]; mu2 = theta[4]; mu3 = theta[5] g1 = theta[6]; g2 = theta[7]; g3 = theta[8] w1=exp(a1)/(1+exp(a1)+exp(a2)) w2=exp(a2)/(1+exp(a1)+exp(a2)) w3=1-w1-w2 obj =((w1^2)/(2*sqrt(exp(g1)*pi)) + (w2^2)/(2*sqrt(exp(g2)*pi)) + (w3^2)/(2*sqrt(exp(g2)*pi)) + 2*w1*w2*dnorm((mu1-mu2)/sqrt(exp(g1)+exp(g2)))/sqrt(exp(g1)+exp(g2)) + 2*w1*w3*dnorm((mu1-mu3)/sqrt(exp(g1)+exp(g3)))/sqrt(exp(g1)+exp(g3)) + 2*w2*w...
2011 Jan 10
2
Calculating Portfolio Standard deviation
...= c(32,27,32,36,37,37,34,23,25,32),                                           JKL = c(47,60,60,43,62,38,44,53,61,41)) sd_prices <- c(3.3483,3.9497,4.9721,9.3387)   # standard deviations say(sd1, sd2, sd3, sd4)                         weights <- c(0.10, 0.25, 0.20, 0.45)      # say (w1, w2, w3, w4) I need to calculate the standard deviation of the portfolio. The formula is stdev_portfolio = sqrt((w1*sd1)^2+(w2*sd2)^2+(w3*sd3)^2+(w4*sd4)^2 +                         2*w1*w2*sd1*sd2*correlation(ABC, DEF)+                         2*w1*w3*sd1*sd3*correlation(ABC, GHI)+                    ...
2005 Sep 08
1
Crash with seasonal ARIMA
The following command crashes my Mac OS X version of R: (I'm running R on a PowerMac G5, with 1 GB of RAM and dual processors.) > arima.0 <- arima(w3.ts,order=c(1,0,0),seasonal=list(order=c (1,0,0),period=365)) -David Here is some background: w3.ts is hourly temperature data with about 20% NA's. It contains about 3.5 years of data. I am using period = 365, which makes sense me to me. Is this wrong? > summary(w3.ts) Min....
2016 Mar 06
3
[PATCH 3/5] installers: MSVC compatibility fixes
...o Miller via Syslinux wrote: > If this change is simply due to a mental note about an incident where a > compiler once complained about this type of thing The problem was due to the following warning when compiling for 64-bit using using the latest WDK (7600.16385.1), with warning level 3 (/W3): 1>c:\rufus\src\syslinux\libinstaller\syslxmod.c(44) : warning C4242: '=' : conversion from 'sector_t' to 'unsigned int', possible loss of data I used to compile Rufus with /W3 everywhere when using WDK, but I have very recently reduced the warning level to /W2 for t...
2011 Mar 10
1
getting percentiles by factor
...t;Industrial"),5)) myExample <- na.omit(myExample) Thanks to Patrick I I managed to put together the following lines which does it for the "Ret" column: myecdf <- function(x, sortAsc) { w1 <- ecdf(x$Ret) w2 <- if (sortAsc) w1(x$Ret) * 100 else abs(w1(x$Ret) * 100 - 100) w3 <- transform(x, myPerc=w2) return(w3) } myExampleEnd <- lapply(split(myExample, myExample$Sectors), myecdf, sortAsc="True") myExampleEnd <- unsplit(myExampleEnd, myExample$Sectors) I need to make the function more flexible accepting the name of the column to calculate percentil...
2006 Oct 01
2
Metadata & RDF
...a, or probably better for random attached XML data, That sounds reasonable, but... and > let the xml parser figure out what schema it's using. It's easy > to recognize RDF-in-XML Not always - the following is valid (though rather unusual!) RDF/XML : <html xmlns="http://www.w3.org/1999/xhtml"> <body> <p><blockquote>Mixup</blockquote></p> </body> </html> http://www.w3.org/RDF/Validator/ARPServlet?URI=http%3A%2F%2Fdannyayers.com%2Fcode%2Fminimal-xhtml.html&PARSE=Parse+URI%3A+&TRIPLES_AND_GRAPH=PRINT_TRIPLES...
2012 Nov 20
2
Community Group for Markdown Standardization
FYI, There was an interest from a few people to create a formalization of Markdown as it is currently implemented. A W3C Community Group has been created for moving forward and exploring the idea and create a spec if necessary. A W3C Community Group [1] is a platform for discussing, publishing about a topic. You just need a free public W3C account [2] The community markdown group [3] has started to discuss about...
2006 May 25
3
webservice timeout issue
...(500 Internal Error) Processing AuthController#api (for 127.0.0.1 at 2006-05-24 22:25:02) [POST] Session ID: 6615e9cda1cbf643ac216968825c39b7 Parameters: {"<?xml version"=>"\"1.0\" encoding=\"utf-8\" ?>\n<env:Envelope xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n xmlns:env=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsi=\" http://www.w3.org/2001/XMLSchema-instance\">\n <env:Body>\n <n1:Validate xmlns:n1=\"urn:ActionWebService\"\n env:encodingStyle=\" http://sc...