search for: known

Displaying 20 results from an estimated 23288 matches for "known".

Did you mean: know
2015 Sep 01
3
anyone want to help tune up computeKnownBits()?
While looking at optimizations where Souper exploits known bits, I realized that it would be easy to teach Souper to compute known bits. Comparing its results against computeKnownBits() from r246393, it looks like there are some easy (and some not-easy) opportunities for improvement, please see a few examples below. The expressions come from compilin...
2004 Sep 15
1
RC2 zaptel compile problem
...f the error, although I don't think it's useful. -Jeff Borders (jeffATjeffbordersDOTcom) /usr/src/zaptel/zaptel.c:6203: warning: excess elements in struct initializer /usr/src/zaptel/zaptel.c:6203: warning: (near initialization for `zt_fops') /usr/src/zaptel/zaptel.c:6204: error: unknown field `flush' specified in initializer /usr/src/zaptel/zaptel.c:6204: warning: excess elements in struct initializer /usr/src/zaptel/zaptel.c:6204: warning: (near initialization for `zt_fops') /usr/src/zaptel/zaptel.c:6205: error: unknown field `fsync' specified in initializer /usr/src/...
2013 Jan 11
1
libvirt RPC error
...Note: libvirt.so not present, using /usr/lib/libvirt.so.0 libvir: error : no connection driver available for No connection for URI xen:/// No Xen on this system NOTE: 1 memory stats available out of 8 libvir: error : internal error getaddrinfo failed for 'iwf004461': Name or service not known libvir: QEMU error : Requested operation is not valid: cgroup CPU controller is not mounted NOTE: scheduler type not available libvir: error : internal error getaddrinfo failed for 'iwf004461': Name or service not known libvir: error : internal error getaddrinfo failed for 'iwf004461...
2015 Sep 08
2
UB and known bits
On the subject of undefined behavior and known bits, as I'm sure some of you are aware, code in ValueTracking.cpp is exploiting poison value rules to get a bit of extra precision in the known bits. These rules fire on examples like the ones below. Do we have a set of rules that clients of known bits need to follow to avoid unsoundness?...
2016 May 03
3
Reasoning about known bits of the absolute value of a signed integer
...ecifically, I want to know the highest possibly set bit and lowest possibly set bit of the absolute value, in order to find the range between the two. Note that I'm specifically trying to be as conservative as possible. This is what I have so far: If the sign bit of the original integer is a known 0 (known positive) - the highest possibly set bit is the highest bit not known to be zero, and the lowest possibly set bit is the lowest bit not known to be zero. If the sign bit of the original integer is a known 1 (known negative) - the highest possibly set bit is the one *to the left of* the *l...
2011 Aug 24
0
winbind wbcGetpwnam WBC_ERR_DOMAIN_NOT_FOUND
...am() with BUILTIN\Administrators > name (string) returns error 7 (WBC_ERR_DOMAIN_NOT_FOUND). > > I tried just Administrators and got the same error. > Same error with user (string) Everyone also. > ---- I've noticed this problem as well... In fact, every one of the well-known addresses that I manually added (and are still listed, and mapped to local groups) are unavailable for use at any client. Very sad since I went to the trouble of creating all the local groups for these that Samba refuses to return them even though they are defined. Is this something else that n...
2011 Sep 09
3
Can't add users to well known groups...
I created the well known group Domain Admins pointing to a local group, but I am not able to add users to the group -- it claims I can only add users to local or global groups... But I only see local, domain ,well-known, builtin. There are no global groups unless one would include all groups that are not local (i.e. dom...
2007 Nov 20
0
4 commits - libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_resource.c test/image test/trace
...image/mask-different-parent-8.swf |binary test/image/mask-different-parent-8.swf.png |binary test/image/mask-different-parent.as | 30 +++++++++++++++ test/trace/Makefile.am | 6 +++ test/trace/moviecliploader-known-image-size-7.swf |binary test/trace/moviecliploader-known-image-size-7.swf.trace | 2 + test/trace/moviecliploader-known-image-size-8.swf |binary test/trace/moviecliploader-known-image-size-8.swf.trace | 2 + test/trace/moviecliploader-known-image-size.as | 10 +++++...
2011 May 14
4
Pepakura 3.0.3a on OSX
...pakura Designer 3.0.3a because it was the the most up to version with a decent rating, however I've run into the DIB Init Failed issue: Code: ine Pepakura\ Designer\ 3.exe fixme:shell:SHAutoComplete stub fixme:exec:SHELL_execute flags ignored: 0x00000180 fixme:file:get_default_com_device no known default for device com1 fixme:file:get_default_com_device no known default for device com2 fixme:file:get_default_com_device no known default for device com3 fixme:file:get_default_com_device no known default for device com4 fixme:file:get_default_com_device no known default for device com5 fixme:f...
2007 Jun 03
1
FW: Centos kernel source
I already did what you said,please see the log results in zaptel.rar attached when I compile zapltel using make ********************************************* No employee or agent is authorized to conclude any binding agreement on behalf of Xplorium with another party by e-mail without express written confirmation by an officer of Xplorium. Any views expressed by an individual in this
2007 Sep 26
2
generate fourth vector based on known correlations
I am trying to generate a fourth vector,z, given three known and fixed vectors, x1,x2,x3 with corresponding known and fixed correlations with themeselves and with z. That is, all correlations are known and prespecified. How can I do this? Thank you, ben
2013 Apr 16
1
HMM Package parameter estimation
Hi, I am having difficulties estimating the parameters of a HMM using the HMM package. I have simulated a sequence of observations from a known HMM. When I estimate the parameters of a HMM using these simulated observations the parameters are not at all close to the known ones. I realise the estimated parameters are not going to be exactly the same as the known/true parameters, but these are nowhere close. Below is my code used. Any ideas...
2015 Feb 01
4
[LLVMdev] RFC: Proposal for Poison Semantics
I don't know how things work at the moment, but it seems to me that you can do lots of sensible things, and avoid lots of silly things, if you keep track of four possible values for each bit: - undef (the default) - poison - known to be 0 - known to be 1 This makes both David's and Chandler's examples work nicely if you assume: - ZEXT makes all the new bits known 0 - SEXT makes all the new bits the same as the high bit - AND clears unknown and poison bits to known 0 if the other input is known 0 - OR sets unknown a...
2009 Apr 28
3
[LLVMdev] Building LLVM 2.5 on CENTOS 5.3
Hi Folks, I'm having some difficulties getting LLVM to build and work correctly on CENTOS 5.3. This is basically tracked down easily enough to CENTOS using GCC 4.1.x by default, which is known-buggy and known not to work with LLVM -- I was getting the well-known problem with aborts due to a non-empty symbol table. I have installed the gcc43 package via yum (I'm trying to stick to known packages because I need to roll this out at some point), which installs a gcc43 executable....
2012 May 23
1
how a latent state matrix is updated using package R2WinBUGS
...ows index individuals (owls that are marked and released) and columns index capture occasions. Each value in the matrix represents the latent state for individual i at occasion t: z[i,t]=0 if individual i is dead at time t, and =1 if individual i is alive at time t. In the example, a matrix of known values for z is created from the capture histories and provided as data; I will call it known.z. And a matrix of initial values (where z is unknown) is also created and provided; I will call it init.z. The dimensions of these two matrices are 250 individuals by 6 capture occasions. However,...
2005 Jun 01
2
Fitting ARMA model with known inputs.
Hello! Is it possible to use R time series to identificate a process which is subjected to known input? I.e. I have 2 sequences - one is measurements of black box's state and the second is the "force" by which this black box is driven (which is known too) and I want to fit thist two series with AR-process. The "ar" procedure from stats package expects that the force...
2007 Mar 19
4
Kernal32 -- Known to do
I am an undergraduation and I am planning to do a known to do ( KERNAL 32) as my Final Year Project. I was wondering what should be the capabilities to successfully complete it within one year. Keeping in mind, I am new to this emulator.
2014 Feb 24
1
A question regarding doveadm replicator status
Hello, I am using Dovecot version 2.2.10. I am quite familiar with ssh replication and I managed to set it up correctly. The only problem I see is that when i run the command: doveadm replicator status I get a wrong "Total number of known users" which is a) is different between the two (2) replicated dovecot servers, i.e. in mail1 I get a total of 21 users and in mail2 I get a total of 20 users (it should be the same, correct?) b) is not matching the total number of users I have in each server (mail1, mail2) which I am also get...
2011 Sep 12
0
Fwd: Re: Can't add users to well known groups...
Forgot to CC the list. -------- Original Message -------- SUBJECT: Re: [Samba] Can't add users to well known groups... DATE: Mon, 12 Sep 2011 15:51:31 +0200 FROM: Fran?ois Legal TO: Linda Walsh Not sure if this is relevant, but if (first case shown down here) "Domain Admins" is not so much a group but a map to unix group, I'm not surprised that you can't add users to...
2011 May 17
1
Name or service not known
...[2011-05-17 17:44:05] NOTICE[21456]: chan_sip.c:19804 handle_response_peerpoke: Peer '0010106' is now Reachable. (381ms / 10000ms) [2011-05-17 17:44:06] ERROR[21456]: netsock2.c:245 ast_sockaddr_resolve: getaddrinfo("212.93.97.135:7759", "7759", ...): Name or service not known [2011-05-17 17:44:06] ERROR[21456]: netsock2.c:245 ast_sockaddr_resolve: getaddrinfo("212.93.97.135:7759", "7759", ...): Name or service not known [2011-05-17 17:44:06] ERROR[21456]: netsock2.c:245 ast_sockaddr_resolve: getaddrinfo("212.93.97.135:7759", "7759&quot...