search for: distinguish

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

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 0.01 iManufactur...
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...
2018 Jan 03
0
Distinguishing trunk version number from release
...e 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 release snapshots of clang from trunk (e.g. the Android NDK), it'd be helpful to be able to more reliably distinguish this. > > This is both confusing in general, and means that if you're writing an #if checking the version (which of course ought to be avoided when possible, but is sometimes the best answer), it is more difficult than it needs to be to do the right thing. > > E.g., a check like t...
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
...The problem is that I've got 26 different values for the grouping variable species and only 6 default values for the line type lty (and according to the par {graphics} help page customizable to up to 8 different line types). Does anybody have any idea how these 26 different lines can be made distinguishable from each other without the use of colors? Thanks, Katharina
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 ha...
2012 Mar 22
1
How do you distinguish between characters on a pco plot?
...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 example if the distance matrix looks like: http://r.789695.n4.nabble.com/file/n4496217/Screen_shot_2012-03-22_at_17.14.17.png 1, 2, 3 and 4 are the characters to be plotted. I'd like 1 and 2 to appear as the same shape/ colour on the plot, different from 3 and...
2018 Jan 03
1
Distinguishing trunk version number from release
...ons 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 release snapshots of clang from trunk (e.g. the Android NDK), it'd be helpful to be able to more reliably distinguish this. >> >> This is both confusing in general, and means that if you're writing an #if checking the version (which of course ought to be avoided when possible, but is sometimes the best answer), it is more difficult than it needs to be to do the right thing. >> >> E.g.,...
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: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160208/53bae800/attachment.html>
2013 Sep 01
2
[LLVMdev] Distinguishing Pointer Variable and Ordinary Variable
...ore i32 %0, i32* %1, align 4 11. ret i32 0 } Line 8,9,10 of IR represents *b=a; Now I want to recognise whether i32* %1 on line 10 is a pointer variable or ordinary variable through llvm pass. So how to solve this issue ??? -- View this message in context: http://llvm.1065342.n5.nabble.com/Distinguishing-Pointer-Variable-and-Ordinary-Variable-tp60881.html Sent from the LLVM - Dev mailing list archive at Nabble.com.
2020 Aug 26
2
Distinguishing between host and guest initiated VM shutdown
...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 VIR_DOMAIN_EVENT_SHUTDOWN_GUEST detail. Although it is a host initiated shutdown actually. Does libvirt provide any means to distinguish this case from a regular user shutdown? Thanks, Milan
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 ( http://code.google.com/p/data-race-test/wiki/PopularDataR...
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 have partition tables). A better heuri...
2012 Sep 26
0
[LLVMdev] Distinguish variadic register defines/uses in MCInstrDesc?
...cDefs() and hasVariadicUses()? > > That way handling variadic instructions when disassembling would be much > easier and only instructions with variadic uses and defines would need > explicit special casing - if they even exist. Hi Christoph, As you noticed, MCInstrDesc doesn't distinguish between variadic uses and defs. Since variadic instructions will always require some kind of special handling, it doesn't seem worthwhile to make the model more detailed. I think your current workaround sounds fine. /jakob
2013 Sep 01
0
[LLVMdev] Distinguishing Pointer Variable and Ordinary Variable
...e 8,9,10 of IR represents *b=a; > > Now I want to recognise whether i32* %1 on line 10 is a pointer variable > or > ordinary variable through llvm pass. > So how to solve this issue ??? > > > > -- > View this message in context: > http://llvm.1065342.n5.nabble.com/Distinguishing-Pointer-Variable-and-Ordinary-Variable-tp60881.html > Sent from the LLVM - Dev mailing list archive at Nabble.com. > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/m...
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 >> >> > mail_log_prefix = "%s(%u)<%{pid}><%{session}>: " > > Aki...
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 ·Q§Y®É³qª¾³q°T¿ý¸Ìªº©Ò¦³¿ËªB¦n¤Í¦n®ø®§¡A´N¨ÓYahoo!©_¼¯...
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
...tion, 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 answer and an invalid? For me, a 'failed' attempt is dialing an invalid number, and I'd like the CDRs to reflect that. I'd like a no answer to be as 'successful' as a busy. I'm familiar with the 'OriginateFailure' event and it's 'Reason&...