search for: is0

Displaying 14 results from an estimated 14 matches for "is0".

Did you mean: is
2008 Feb 19
2
Charset conversion : init_iconv error
Hi all, Debian Server with linux-image-2.6.18-5-amd64 and Samba 3.0.24-6et: When I run testparm I get the error: Load smb config files from /etc/samba/smb.conf init_iconv: Conversion from UTF-16LE to IS0-8859-15 not supported init_iconv: Attempting to replace with conversion from UTF-16LE to ASCII init_iconv: Conversion from UTF8 to IS0-8859-15 not supported init_iconv: Attempting to replace with conversion from ASCII to ASCII init_iconv: Conversion from IS0-8859-15 to UTF-16LE not supported init_i...
2011 Jul 09
1
SpatialPolygonsDataFrame holes problem
I have obtained shapefiles for Indian states from here: http://www.maptell.com/index.php?option=com_remository&Itemid=159&func=fileinfo&filecatid=115&parent=category Problem: I want to extract centroid coordinates for each State, but there is some coding problem with the shapefiles that prevents this. #Code: #After extracting the shapefiles from the india_state.zip file, then:
2002 Sep 13
0
rsync 2.5.x doesn't like iso uploading with -z option
...resident)k 0inputs+0outputs (243major+599minor)pagefaults 0swaps this has been verified on two different send/receive host combinations, using both 2.5.0 and 2.5.5, whether or not *.iso was listed in the "dont compress" section of rsyncd.conf. renaming both source and dest files to *.is0 [zero] seems to work fine; i can sync *.is0 files just fine with -z [and it produces quite a speedup too vs. no compression!]. btw, thanks tridge and folks for such a handy util. joe -- Joseph Cheek, CTO and Founder, Lycoris Lycoris Desktop/LX: Familiar. Powerful. Open. joseph@lycoris.com, h...
2014 Oct 17
1
KVM does not start anymore
...al machine running on a C7 host for several weeks without any problems. Today I rebootet the host and now the virtual machine does not start anymore. I can see grub coming up and starting the kernel. After some seconds the last thing that is visble on the VM console is "ss perfctr msr (MSR c1 is0)" then the screen goes blank with just a blinking cursor in the upper left corner. After that nothing happens anymore. The CPU load on the host is nearly 0%. Any ideas what could be the reason and how to solve this? Best regards, Bernd
2015 Mar 03
2
[R] Why does R replace all row values with NAs
...ns. E.g., >> x <- data.frame(a=1:10,b=2:11,c=c(1,NA,3,NA,5,NA,7,NA,NA,10)) >> x[is.true(x$c >= 6), ] > a b c > 7 7 8 7 > 10 10 11 10 > Bill Dunlap > TIBCO Software > wdunlap tibco.com Yes; the Matrix package has had these is0 <- function(x) !is.na(x) & x == 0 isN0 <- function(x) is.na(x) | x != 0 is1 <- function(x) !is.na(x) & x # also == "isTRUE componentwise" namespace hidden for a while [note the comment of the last one!] and using them for readibility in its own code. Maybe we shou...
2015 Mar 03
2
[R] Why does R replace all row values with NAs
...x[is.true(x$c >= 6), ] >> > a b c >> > 7 7 8 7 >> > 10 10 11 10 >> >> > Bill Dunlap >> > TIBCO Software >> > wdunlap tibco.com >> >> Yes; the Matrix package has had these >> >> is0 <- function(x) !is.na(x) & x == 0 >> isN0 <- function(x) is.na(x) | x != 0 >> is1 <- function(x) !is.na(x) & x # also == "isTRUE componentwise" > > Note that using %in% to block propagation of NAs is about 2x faster: > > > x <- sample(c...
2015 Mar 03
0
[R] Why does R replace all row values with NAs
...A,3,NA,5,NA,7,NA,NA,10)) > >> x[is.true(x$c >= 6), ] > > a b c > > 7 7 8 7 > > 10 10 11 10 > > > Bill Dunlap > > TIBCO Software > > wdunlap tibco.com > > Yes; the Matrix package has had these > > is0 <- function(x) !is.na(x) & x == 0 > isN0 <- function(x) is.na(x) | x != 0 > is1 <- function(x) !is.na(x) & x # also == "isTRUE componentwise" Note that using %in% to block propagation of NAs is about 2x faster: > x <- sample(c(NA_integer_, 1:10000), 50...
2015 Mar 03
0
[R] Why does R replace all row values with NAs
...> a b c >>> > 7 7 8 7 >>> > 10 10 11 10 >>> >>> > Bill Dunlap >>> > TIBCO Software >>> > wdunlap tibco.com >>> >>> Yes; the Matrix package has had these >>> >>> is0 <- function(x) !is.na(x) & x == 0 >>> isN0 <- function(x) is.na(x) | x != 0 >>> is1 <- function(x) !is.na(x) & x # also == "isTRUE componentwise" >>> >> >> Note that using %in% to block propagation of NAs is about 2x faster: &gt...
2020 Feb 21
0
function(x) !is.na(x) & x "is_true(.)" etc. was: [R] How to index..
.../pkg/Matrix/R/Auxiliaries.R?view=markup&root=matrix ) ## Need to consider NAs ; "== 0" even works for logical & complex: ## Note that "!x" is faster than "x == 0", but does not (yet!) work for complex ## if we did these in C, would gain a factor 2 (or so): is0 <- function(x) !is.na(x) & x == 0 isN0 <- function(x) is.na(x) | x != 0 is1 <- function(x) !is.na(x) & x # also == "isTRUE componentwise" {{Note that here 0 <==> FALSE and non-0 <==> TRUE , and I had preferred the shorter words to the longer ones...
2015 Oct 23
3
Isohybrid wiki page and UEFI
> EFI from CD/DVD/BD has a soft size limit of 32 MB for its > System Partition. > That's due to the format of El Torito Boot Catalog which > counts the 512-bytes blocks by a 16-bit unsigned integer. @Thomas, If you would be so kind, would you please remind me (us)... Is this "32MiB" a limitation related to the UEFI specs in any way? Or is it relevant for BIOS
2015 Oct 23
0
Isohybrid wiki page and UEFI
...as "200 byte", where "200" is to be read as hexadecimal number. Decimal 512. (It also calls CD-ROM sector size "800" which is fixly decimal 2048.) 65535 * 512 bytes = 32 MiB - 512 bytes. In UEFI 2.4, paragraph 12.3.2.1 "ISO-9660 and El Torito" says: "IS0-9660 is the industry standard low level format used on CD-ROM and DVD-ROM. The CD-ROM format is completely described by the ?El Torito? Bootable CD-ROM Format Specification Version 1.0. To boot from a CD-ROM or DVD-ROM in the boot services environment, an EFI System partition is stored in a...
2017 Feb 21
1
segfault in lib20_expire_plugin
...} protocol imap { mail_max_userip_connections = 12 mail_plugins = " quota mail_log notify expire zlib acl notify replication imap_quota imap_zlib imap_acl" } protocol pop3 { mail_plugins = " quota mail_log notify expire zlib acl notify replication quota" } -- Pers?nlich IS0-Zertifiziert in angewandter Kompetenzsimulation.
2015 Oct 23
5
Isohybrid wiki page and UEFI
...t;200" is to be read as hexadecimal number. Decimal 512. > (It also calls CD-ROM sector size "800" which is fixly decimal 2048.) > > 65535 * 512 bytes = 32 MiB - 512 bytes. > > In UEFI 2.4, paragraph 12.3.2.1 "ISO-9660 and El Torito" says: > > "IS0-9660 is the industry standard low level format used on CD-ROM > and DVD-ROM. The CD-ROM format is completely described by the > ?El Torito? Bootable CD-ROM Format Specification Version 1.0. > To boot from a CD-ROM or DVD-ROM in the boot services environment, > an EFI System part...
2008 May 21
0
Errors in using gdb (PR#11496)
...m0PGx/Y 0bC6bFcPgzXCkOzqJJIpV4zsi7ztxDtURqSZwurOwEysTiKRRonV257nZazeVrK6gOhM7XbP ayeUsSQSiUQaTVZ3HmWj8YGpXFSUJBKpL/nAZKzeYLg+Pt5UsjpP6bJdvdXsvvENW1Hekkgk Emk0Wd058DxWJ5FIpBFhdZnSZX/1ZtP/xje+SXlLIpFIpNFkdaul3GRWLzP/J4lEItlK8oFp sOWQBFZn4ildZvUkWf2ss86ijCWRSCTStLB6fb4lxOokEmlUWH1sXGNX188Ds2DBAmJ1EolE Is0+kQ8MiUQastz81fWs3my2TjvtNMpbEolEIhGrk0gkUoWsjktXAGwDqOPaHOiwZ7UWUmOs +Z73vJfylkQikUizktXJB4ZEIg1TvA9MY0Jj3JZqpY2aTb/Z8kMSiUQikWaX8ljdJ5FIpBKy ZPUxebNidc/vd8KERELxFYxEIpFmtDTzq1PmkEgkN/LRj3kXfGA4Ph+f3B8bf8pGXviyIJpD JUUiVieRSKsIq8NxyhwSieRGPtCAmLM6Tv8yMQ/M2Dj+he2cc84544wzLr744nPPPffss8+G jz//+c8vueS...