search for: lie

Displaying 20 results from an estimated 4230 matches for "lie".

Did you mean: like
2018 Feb 17
2
readLines interaction with gsub different in R-dev
...er and replace it with itself, converted to uppercase." Perhaps my example was too minimal. Consider the following: R> gsub("(\\w)", "\\U\\1", entry, perl = TRUE) [1] "A" R> gsub("(\\w)", "\\1", entry, perl = TRUE) [1] "author: Am?lie" # OK, but very different to 'A', despite only not specifying uppercase R> gsub("(\\w)", "\\U\\1", "author: Amelie", perl = TRUE) [1] "AUTHOR: AMELIE" # OK, but very different to 'A', R> gsub("^(\\w+?): (\\w)", "...
2018 Feb 17
2
readLines interaction with gsub different in R-dev
...> ... For perl = TRUE only, it can also contain "\U" or "\L" to convert the rest of the replacement to upper or lower case and "\E" to end case conversion. However, the following code runs differently: tempf <- tempfile() writeLines(enc2utf8("author: Am?lie"), con = tempf, useBytes = TRUE) entry <- readLines(tempf, encoding = "UTF-8") gsub("(\\w)", "\\U\\1", entry, perl = TRUE) "AUTHOR: AM?LIE" # R-3.4.3 "A" # R-dev Best, Hugh Parsonage.
2002 Sep 06
1
Warning: Server lies about size of server public key: actual size...
We started receiving this message in our production server. Warning: Server lies about size of server public key: actual size is 767 bits vs. announced 768. Warning: This may be due to an old implementation of ssh. When I looked in the list archives I see that there has been a conversation about this topic before back about a year ago. Currently we are going from Openssh vers...
2013 Jan 29
1
points rejected as lying outside the specified window
Hello, I am using the following code to create ppp files from csv data and map shape files, but I am getting some errors which I have been unable to fix by searching them online: library(spatstat) library(maps) library(maptools) NYC2<-readShapePoly("nybb.shp") # this is a map of the NYC boroughs without waterways and no census tract divisions (but it does include lines separating
2005 Apr 04
5
a question about box counting
Hi, I have a set of x,y data points and each data point lies between (0,0) and (1,1). Of this set I have selected all those that lie in the lower triangle (of the plot of these points). What I would like to do is to divide the region (0,0) to (1,1) into cells of say, side = 0.01 and then count the number of cells that contain a point. My first approach is...
2019 Nov 22
2
Join 2012 Server to Samba 4.11
...2012 Windows server as a secondary AD-DC, my bad, I wasn't clear enough here. About Samba version, we can assume that it's a Samba 4.11 with 2012 schema. That's quite a good news here, I will test ASAP. I just wanted to know it anybody had problems beforehand; Thanks a lot :) Am?lie Am?lie LE JEUNE, Technicienne syst?mes et r?seaux Tranquil IT 12 avenue Jules Verne (B?t. A) 44230 Saint S?bastien sur Loire (FRANCE) tel: +33 (0) 240 975 755 Retrouvez-nous sur les r?seaux : [ https://twitter.com/TRANQUIL_IT ] [ https://www.linkedin.com/company/3108003/ ] [ https://www...
2002 Mar 01
0
[Bug 132] New: connects to 1.2.2? vintage sshd sometimes gets "Server lies" about host key size off by 1 bit
http://bugzilla.mindrot.org/show_bug.cgi?id=132 Summary: connects to 1.2.2? vintage sshd sometimes gets "Server lies" about host key size off by 1 bit Product: Portable OpenSSH Version: -current Platform: All OS/Version: other Status: NEW Severity: normal Priority: P2 Component: ssh AssignedTo: openssh-unix-dev at mindr...
2011 Aug 21
1
[LLVMdev] Lying about being expanded?
Hi! I noticed in the LegalizeDAG.cpp (SelectionDAGLegalize::LegalizeOp): case ISD::INIT_TRAMPOLINE: case ISD::FRAMEADDR: case ISD::RETURNADDR: // These operations lie about being legal: when they claim to be legal, // they should actually be custom-lowered. Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)); if (Action == TargetLowering::Legal) Action = TargetLowering::Custom; break; What does this mean? Why d...
2012 Aug 06
2
Identify points that lie within polygon
...v1, v2, lwd = 2, col = "red") # plot a set of candidate grid points grid<-seq(0, 10, length.out = 30) pts<-expand.grid(grid, grid) points(pts, pch = 19, col = 1, cex = 1) Many thanks! Alastair -- View this message in context: http://r.789695.n4.nabble.com/Identify-points-that-lie-within-polygon-tp4639289.html Sent from the R help mailing list archive at Nabble.com.
2011 Aug 20
4
I have a problem with R!!
...onentes del vector de capacidad es necesario definir primero las especificaciones y el valor objetivo, T, as? como el m?ximo valor admitido para la proporci?n de producci?n no conforme, a cada lado de los l?mites de especificaciones# # Ingrese ahora el valor del l?mite inferior de especificaciones# LIE <- 13 # Ingrese ahora el valor del l?mite superior de especificaciones# LSE <- 17 # Ingrese ahora el valor objetivo# T <- 14.5 # Ingrese ahora el m?ximo valor admitido para la proporci?n de producci?n no conforme a cada lado de los l?mites de especificaciones# MA<- 0.00135 D<- min ((...
2018 Feb 17
0
readLines interaction with gsub different in R-dev
I think the problem in R-devel happens when there are non-ASCII characters in any of the strings passed to gsub. txt <- vapply(list(as.raw(c(0x41, 0x6d, 0xc3, 0xa9, 0x6c, 0x69, 0x65)), as.raw(c(0x41, 0x6d, 0x65, 0x6c, 0x69, 0x61))), rawToChar, "") txt #[1] "Am?lie" "Amelia" Encoding(txt) #[1] "unknown" "unknown" gsub(perl=TRUE, "(\\w)(\\w)", "<\\L\\1\\U\\2>", txt) #[1] "<a" "<a" gsub(perl=TRUE, "(\\w)(\\w)", "<\\L\\1\\U\\2>", txt[1]) #[1] "&l...
2011 Oct 25
4
comparing two tables
...+ MI0017696 93 ... localization table: Chr Start End length 4 136532 138654 2122 3 139870 141970 2100 2L 157838 158440 602 X 160834 162966 2132 4 204040 208536 4496 ... I would like to check whether a specific gene lie within a certain region. For example I want to see if gene 3 on chromosome 2L lies within the region given in the second table. What I would like to is like 1. check if the gene lies on a specific chromosome 1.a if no - go to the next line 1.b if yes - go to 2 2. check if the start position of the...
2011 Feb 01
1
kmeans: number of cluster centres must lie between 1 and nrow(x)
Dear R, Can't I cluster a dataset into k clusters where k is exactly the number of observations? I have version 12.2 installed. See this example > a <- matrix(1:100, 20) > kmeans(a, 20) Error: number of cluster centres must lie between 1 and nrow(x) This is a bit ad-hoc but I known R from version 2.12 allows number of clusters to be one. So I guess allowing number of clusters to be nrow(x) should be also possible in the future release? Feng -- Feng Li Department of Statistics Stockholm University 106 91 Stockholm, Sw...
2009 Jan 05
3
if statement
Hi, How do I check for two conditions in an if loop? I want to check if a value lies between 2 other values. For example, A <- ts(rnorm(120), freq=12, start=c(1992,8)) X <- 0.5 Y <- 0.8 I would like to create a new vector C for which C[i] is 0 if A[i] lies in between X and Y. Would be grateful for any help. Sorry for asking such an R-newbie question! Shruthi -- V...
2006 Nov 08
0
Queue forks asterisk and then leaves theextraprocesses lying around
Hi, have a look at http://www.freepbx.org/trac/ticket/1174 it's currently in the bug list. Regards Lee -----Original Message----- From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Nigel Roberts Sent: 08 November 2006 09:14 To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] Queue forks asterisk
2007 Jul 04
0
[1105] trunk/wxruby2/doc/textile/button.txtl: 2.8 documentation update reflecting where set_default_item now lies
...ay:block;padding:0 10px;} #patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;} #patch .lines, .info {color:#888;background:#fff;} --></style> <title>[1105] trunk/wxruby2/doc/textile/button.txtl: 2.8 documentation update reflecting where set_default_item now lies</title> </head> <body> <div id="msg"> <dl> <dt>Revision</dt> <dd>1105</dd> <dt>Author</dt> <dd>brokentoy</dd> <dt>Date</dt> <dd>2007-07-04 15:11:04 -0400 (Wed, 04 Jul 2007)</dd> </dl...
2016 Apr 28
3
[PATCH V2 RFC] fixup! virtio: convert to use DMA api
...d the truth, then we stick it in bypass mode because we know it *isn't* actually being translated. Actually, that's almost *identical* to what we want, isn't it? Except instead of checking undocumented chipset registers, it wants to be checking "am I on a version of qemu known to lie about virtio being translated?" > > We don't actually *need* it for the Intel IOMMU; all we need is for > > QEMU to stop lying in its DMAR tables. > We need it for legacy QEMU anyway, and it's not easy for QEMU to stop > lying about virtio, so we'll need it for a...
2016 Apr 28
3
[PATCH V2 RFC] fixup! virtio: convert to use DMA api
...d the truth, then we stick it in bypass mode because we know it *isn't* actually being translated. Actually, that's almost *identical* to what we want, isn't it? Except instead of checking undocumented chipset registers, it wants to be checking "am I on a version of qemu known to lie about virtio being translated?" > > We don't actually *need* it for the Intel IOMMU; all we need is for > > QEMU to stop lying in its DMAR tables. > We need it for legacy QEMU anyway, and it's not easy for QEMU to stop > lying about virtio, so we'll need it for a...
2010 Dec 30
4
perl code to remove newlines
Given an HTML file which looks like this: --------- begin snippet --------- <HTML ><HEAD ><TITLE >We've Lied to You&#8230;</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK REL="HOME" TITLE="Maximum RPM" HREF="index.html"><LINK REL="UP" TITLE="Using RPM to Verify Installed P...
2016 Apr 27
2
[PATCH V2 RFC] fixup! virtio: convert to use DMA api
On Wed, 2016-04-27 at 21:17 +0300, Michael S. Tsirkin wrote: > > > Because it's a dirty hack in the *wrong* place. > > No one came up with a better one so far :( Seriously? Take a look at drivers/iommu/intel-iommu.c. It has quirks for all kinds of shitty devices that have to be put in passthrough mode or otherwise excluded. We don't actually *need* it for the Intel