search for: distinguished

Displaying 20 results from an estimated 4039 matches for "distinguished".

2008 Mar 18
3
distinguishing identical multiple usbhid-ups devices
HI I would like to connect several Cyberpower Value 800E devices over a USB hub to a single host. Problem is how to distinguish them in order to correctly identify because lsusb -vvvv -d and upsc show the same device name and serial number is 0 Bus 002 Device 012: ID 0764:0501 Cyber Power System, Inc. idVendor 0x0764 Cyber Power System, Inc. idProduct 0x0501 bcdDevice
2011 Aug 01
4
Plotting question
Hi, I use?R to draw my graphs. I have 100 points on a simple xy-plot. The points are distinguished by a third variable which is categorical with 10 levels. I have been plotting x against y and using gray scales to distinguish the level of the categorical variable for each point. It looks ok to me but?a journal reviewer says this is not any use. I cannot afford to pay for colour prints. Any id...
2018 Jan 03
0
Distinguishing trunk version number from release
On 01/03/2018 09:24 AM, James Y Knight via llvm-dev wrote: > I'd like to propose that trunk always have a version number which is in between versions used by the previous release branch, and before the versions used in the next release branch. > > Right now, trunk is sharing the 7.0.0 number, which will also be used by the next release 4 months from now. Since some people use and
2002 Aug 09
1
How to distinguish ABR & VBR ogg files?
I want to display info about Ogg files to Windows users. The docs tell me how to distinguish CBR (nom=min=max bitrate), but how do I distinguish between ABR and VBR streams? When I created my Ogg files (with CDex) I set the 'quality'. Is there some way to read this from the Ogg file? Should I avoid calling the ov_bitrate function because it has to read through the whole stream?
2009 Jun 24
3
distinguish regression lines in grouped, black and white lattice xyplot
Hi, I've got the following problem which I cannot think of a solution right now: if got a lattice xyplot in black and white and a grouping variable with many (more than 8 values) and I plot it as regression lines (type="r"), just like this one (not reproducable but that's I guess not the point here): xyplot(log(AGWB) ~ log(BM_roots), data=sub_agwb_data, groups=species,
2018 Nov 07
2
MailLog plugin distinguish between simultaneous logins
Hi, is it, somehow, possible to distinguish between multiple simultaneous logins in MailLog plugin? For example, which login deleted which message. Is that p[lugin able to log e.g. session ID? azur
2006 Mar 06
1
how to distinguish local add and remote delete?
hi,all, I have a question about how to distinguish local add and remote delete? hope to get answer from any of you, thank you in advanced. how to distinguish local add and remote delete: Local is machine A, Rsync client, remote is machine B, Rsync server. In our application, A and B are load balance and have same import. file changes may happend in machin A or machine B. So each time, A
2012 Mar 22
1
How do you distinguish between characters on a pco plot?
I have a presence/absence matrix for which I create a distance matrix and then perform pco analysis on. /library(ecodist) table <- read.table("matrix.pa") dist <- dist(table, method = "euclidean", diag = FALSE, upper = FALSE) dist.pco <- pco(dist)/ When I plot the pco analysis of the distance matrix I want to be able to distinguish between certain characters, for
2018 Jan 03
1
Distinguishing trunk version number from release
On 01/03/2018 12:55 PM, Tom Stellard via llvm-dev wrote: > On 01/03/2018 09:24 AM, James Y Knight via llvm-dev wrote: >> I'd like to propose that trunk always have a version number which is in between versions used by the previous release branch, and before the versions used in the next release branch. >> >> Right now, trunk is sharing the 7.0.0 number, which will also be
2016 Feb 08
4
distinguish program and temporary variables
Hi, I need to check if a variable belongs to the program originally. Consider the following code line: y = x + 4 and its corresponding llvm ir (roughly): %16 = load i32 %x %add = add i32 %16, i32 4 store i32 %add, %y I need to distinguish between %16, %add and %x, %y. Any help is appreciated. Best, Mohammad -------------- next part -------------- An HTML attachment was scrubbed... URL:
2013 Sep 01
2
[LLVMdev] Distinguishing Pointer Variable and Ordinary Variable
C Code :- int main() { int a=10,c; int *b; c=20; *b=a; return 0; } IR of above code :- define i32 @main() #0 { entry: 1. %retval = alloca i32, align 4 2. %a = alloca i32, align 4 3. %c = alloca i32, align 4 4. %b = alloca i32*, align 8 5. store i32 0, i32* %retval 6. store i32 10, i32* %a, align 4 7. store i32 20, i32* %c, align 4 8. %0 = load i32* %a, align 4 9. %1 = load i32** %b,
2020 Aug 26
2
Distinguishing between host and guest initiated VM shutdown
Hi, we have a problem in oVirt that highly available VMs don't restart after host poweroff because Vdsm identifies the case as a user initiated shutdown (https://bugzilla.redhat.com/1800966). When poweroff is run on the host, libvirt-guests service takes an action. `virsh shutdown' is run on the VM, the guest OS is shut down cleanly and libvirt reports a shutdown event with
2012 Mar 19
5
[LLVMdev] recognizing DTORs and vptr updates in LLVM.
Hello, While instrumenting LLVM IR in ThreadSanitizer (race detector), I need to distinguish between a store to vtable pointer (vptr) and any other regular store. This special treatment should be limited to class DTORs, so I should also know when a function is a DTOR. Rationale: need to distinguish benign and harmful races on vptr (
2013 Jan 04
1
Bug#697409: xen-utils-4.1: pygrub does not correctly distinguish between "disk with partitions" and "partition"
Package: xen-utils-4.1 Version: 4.1.3-7 Severity: normal The function is_disk_image in /usr/lib/xen-4.1/bin/pygrub at line 45 distinguishes a partitioned disk from a partition by looking for 0xaa55 at offset 0x1fe in the image, but this is the bootsector signature, not the partition table signature. extlinux and other bootloaders put this signature there on bootable partitions (which don't
2012 Sep 26
0
[LLVMdev] Distinguish variadic register defines/uses in MCInstrDesc?
On Sep 24, 2012, at 6:39 PM, Christoph Grenz <christophg+llvm at grenz-bonn.de> wrote: > Is it possible to extend LLVM to check if 'variable_ops' is in 'ins' and/or > 'outs' in tablegen, so that MCInstrDesc could provide something like > hasVariadicDefs() and hasVariadicUses()? > > That way handling variadic instructions when disassembling would be
2013 Sep 01
0
[LLVMdev] Distinguishing Pointer Variable and Ordinary Variable
Check it's type to see if it's a pointer or not? On 1 September 2013 12:31, Abhinash Jain <omnia at mailinator.com> wrote: > C Code :- > int main() > { > int a=10,c; > int *b; > c=20; > *b=a; > return 0; > } > > IR of above code :- > define i32 @main() #0 { > entry: > 1. %retval = alloca i32, align 4 > 2. %a = alloca i32, align 4
2018 Nov 07
1
MailLog plugin distinguish between simultaneous logins
Cit?t Aki Tuomi <aki.tuomi at open-xchange.com>: > On 7.11.2018 16.13, azurit at pobox.sk wrote: >> Hi, >> >> is it, somehow, possible to distinguish between multiple simultaneous >> logins in MailLog plugin? For example, which login deleted which >> message. Is that p[lugin able to log e.g. session ID? >> >> azur >> >> >
2007 Oct 06
1
Question about Distinguishable Permutation
Hi, How can I list all possilities of Distinguishable Permutation by R? For example, N=6, n1=n2=n3=2, the total possible answers are 6!/(2!2!2!)=90. Please help me. Thank you So much. ____________________________________________________________________________________¡A
2009 Jul 15
1
For loop for distinguishing negative numbers
Hi i am very new to R and I have been trying to change each individual piece of data in a data set to 10 if it is below 0 and 5 if it is above 0. I know this sounds very easy but i am struggling!! -- View this message in context: http://www.nabble.com/For-loop-for-distinguishing-negative-numbers-tp24499872p24499872.html Sent from the R help mailing list archive at Nabble.com.
2007 Feb 01
1
API Originate Action - distinguishing between No Answer and Invalid phone number
I've discovered that when dialing out using API's Originate action, a no answer is considered a failed attempt, while a busy is considered a successful attempt. The problem I'm having is that when I dial an invalid number, say a disconnected number that gives a fast busy, my CDRs are identical to those generated by a no answer attempt. Is there a way to distinguish between a no