search for: 221e

Displaying 12 results from an estimated 12 matches for "221e".

Did you mean: 221
1998 Jan 05
1
domainlogon with win95
...0000 0000 0000 0000 ............ 2 1.96438 juva -> (broadcast) ARP C Who is 192.108.34.30, helsinki ? 0: ffff ffff ffff 0000 c051 fecd 0806 0001 .........Q...... 16: 0800 0604 0001 0000 c051 fecd c06c 2235 .........Q...l"5 32: 0000 0000 0000 c06c 221e 0000 0000 0000 .......l"....... 48: 0000 0000 0000 0000 0000 0000 ............ 3 0.00161 juva -> helsinki UDP D=137 S=137 LEN=80 0: 0000 c0be 19cf 0000 c051 fecd 0800 4500 .........Q....E. 16: 0064 0200 0000 8011 735d c06c 2235 c06c .d.........
2017 Oct 28
2
Problems with kernel-3.10.0-693.5.2.el7.x86_64
Date: Sat, 28 Oct 2017 12:03:51 -0700 On 10/28/2017 11:30 AM, Gregory P. Ennis wrote: > On each of these units I am using the video from the mother board > which > is : > > Base Board Information > ?????????Manufacturer: ASUSTeK COMPUTER INC. > ?????????Product Name: B150M-A/M.2 what CPU are you using?? any onboard video with the B150 chipset is? coming from the CPU
2017 Oct 29
2
Problems with kernel-3.10.0-693.5.2.el7.x86_64
...' VGA ' | cut -d" " -f 1); do \ lspci??-v -s $card; done Here is an example output for my workstation: 00:02.0 VGA compatible controller: Intel Corporation 4th Gen Core Processor Integrated Graphics Controller (rev 06) (prog-if 00 [VGA controller]) Subsystem: Lenovo Device 221e Flags: bus master, fast devsel, latency 0, IRQ 30 Memory at b3400000 (64-bit, non-prefetchable) [size=4M] Memory at 80000000 (64-bit, prefetchable) [size=512M] I/O ports at 5000 [size=64] Expansion ROM at <unassigned> [disabled] Capabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit-...
2016 Sep 05
2
How to print UTF-8 encoded strings from a C routine to R's output?
...printf has to be used to print from a C routine to guarantee to write to R?s output according to https://cran.r-project.org/doc/manuals/r-release/R-exts.html#Printing. However if a string is UTF-8 encoded, non-ASCII characters (e.g., the infinity symbol http://www.fileformat.info/info/unicode/char/221e/index.htm) are misprinted. Is this an unsupported feature or is there a workaround for this limitation? Thanks! Michael [[alternative HTML version deleted]]
2017 Oct 29
0
Problems with kernel-3.10.0-693.5.2.el7.x86_64
...' VGA ' | cut -d" " -f 1); do \ lspci -v -s $card; done Here is an example output for my workstation: 00:02.0 VGA compatible controller: Intel Corporation 4th Gen Core Processor Integrated Graphics Controller (rev 06) (prog-if 00 [VGA controller]) Subsystem: Lenovo Device 221e Flags: bus master, fast devsel, latency 0, IRQ 30 Memory at b3400000 (64-bit, non-prefetchable) [size=4M] Memory at 80000000 (64-bit, prefetchable) [size=512M] I/O ports at 5000 [size=64] Expansion ROM at <unassigned> [disabled] Capabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit-...
2004 Apr 05
4
Q: Controlling access at the Ethernet level
...n'95 with patch from microsoft.com. There is could be problem with MAC OS - i didn't find pptp-client for it but it should be, i think. Also FreeBSD and Linux has pptp-clients. And the last, you can use cheap hardware pptp-clients in situations like with MAC OS for example Allied Telesyn AR-221E. -- Andrew mailto:resident@b-o.ru
2017 Oct 29
0
Problems with kernel-3.10.0-693.5.2.el7.x86_64
...' VGA ' | cut -d" " -f 1); do \ lspci??-v -s $card; done Here is an example output for my workstation: 00:02.0 VGA compatible controller: Intel Corporation 4th Gen Core Processor Integrated Graphics Controller (rev 06) (prog-if 00 [VGA controller]) Subsystem: Lenovo Device 221e Flags: bus master, fast devsel, latency 0, IRQ 30 Memory at b3400000 (64-bit, non-prefetchable) [size=4M] Memory at 80000000 (64-bit, prefetchable) [size=512M] I/O ports at 5000 [size=64] Expansion ROM at <unassigned> [disabled] Capabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit-...
2019 Feb 07
3
Bug Report: read.table with UTF-8 encoded file imports infinity symbol as Integer 8
I can confirm that it doesn't happen on Ubuntu 18.04.1 so Peter is most likely correct; it looks like its Windows specific. On Thu, 7 Feb 2019 at 12:55, peter dalgaard <pdalgd at gmail.com> wrote: > > This doesn't seem to be happening on MacOS, neither in Terminal nor RStudio, (R 3.5.1, R-devel, R-patched). So probably Windows specific. > > -pd > > > On 7 Feb
2019 Feb 07
0
Bug Report: read.table with UTF-8 encoded file imports infinity symbol as Integer 8
...o "8" x <- "?" Encoding(x) #> [1] "unknown" print(x) #> [1] "8" charToRaw(x) #> [1] 38 "?" is indeed "8" identical(x, "8") #> [1] TRUE Everything seems fine if "?" is UTF-8 encoded. y <- "\u221E" Encoding(y) #> [1] "UTF-8" print(y) #> [1] "?" charToRaw(y) #> [1] e2 88 9e Unless the string is converted back to native encoding. format(y) #> [1] "8" This ought to be "<U+221E>", equivalently to format("?") #> [1]...
2019 Feb 08
3
Bug Report: read.table with UTF-8 encoded file imports infinity symbol as Integer 8
.... In principle, we could change this particular conversion in RGui to avoid the substitution. RGui uses "\uxxxx" escapes to pass characters that cannot be represented, this is why e.g. the Cyrillic Zhe \u0436 worked, so we could tell Windows not to do the substitution and pass "\u221e" for Infinity, and then the string after being processed by the parser will be represented in UTF-8 inside R and could be e.g. printed by the RGui console. That is something that could be considered, but it will not solve the main problem and it may actually cause trouble to users who are...
2019 Feb 08
0
Bug Report: read.table with UTF-8 encoded file imports infinity symbol as Integer 8
...we could change this particular > conversion in RGui to avoid the substitution. RGui uses "\uxxxx" escapes > to pass characters that cannot be represented, this is why e.g. the > Cyrillic Zhe \u0436 worked, so we could tell Windows not to do the > substitution and pass "\u221e" for Infinity, and then the string after > being processed by the parser will be represented in UTF-8 inside R and > could be e.g. printed by the RGui console. That is something that could > be considered, but it will not solve the main problem and it may > actually cause trouble t...
2016 Mar 01
3
[REGRESSION] nouveau: 30 second boot hang after commit 2b700825e
Hello, I am encountering a 30 second hang during boot, in the Xorg process just before the display manager comes up. I have bisected the problem to the following commit: commit 2b700825e7a7702fb862edba1262c98040dc1bf6 Author: Ben Skeggs <bskeggs at redhat.com> Date: Thu Aug 20 14:54:22 2015 +1000 drm/nouveau/mc: move device irq handling to platform-specific code The hang only