Displaying 20 results from an estimated 115 matches for "1899".
Did you mean:
189
2011 May 04
10
[Bug 1899] New: Cannot disable sftp-server
https://bugzilla.mindrot.org/show_bug.cgi?id=1899
Summary: Cannot disable sftp-server
Product: Portable OpenSSH
Version: 5.5p1
Platform: All
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: sshd
AssignedTo: unassigned-bugs at...
2004 Mar 05
3
as.POSIXct problem
Hi all,
I'm having difficulty converting a 'dates' object to a POSIXct object:
testDATES<-c(35947,35971,36004,36008,36053,36066)
testDATES<-chron(dates=testDATES, format = c(dates = "m/d/y"),
origin=c(month = 12, day = 30, year = 1899))
>[1] 06/01/98 06/25/98 07/28/98 08/01/98 09/15/98 09/28/98
> as.POSIXct(testDATES)
[1] NA NA NA NA NA NA
>format(as.POSIXct(testDATES), "%m/%d/%Y")
[1] NA NA NA NA NA NA
I've looked at the as.POSIXct function, traced the problem to ISOdate
and then to strptime, e.g.,...
2018 Apr 22
0
[Bug 351] Conntrack loses connection entries
...94(1452) ack 431 win
15972
15:05:20.613920 IP X.X.X.X.2000 > Y.Y.Y.Y.1898: P 2494:3946(1452) ack 431 win
15972
15:05:20.614474 IP Y.Y.Y.Y.1898 > X.X.X.X.2000: . ack 3946 win 65535
15:05:23.650623 IP X.X.X.X.2000 > Y.Y.Y.Y.1898: P 3946:5398(1452) ack 431 win
15972
15:05:23.653351 IP Y.Y.Y.Y.1899 > X.X.X.X.2000: S 3482286862:3482286862(0) win
65535 <mss 1460,nop,nop,sackOK>
15:05:23.739301 IP X.X.X.X.2000 > Y.Y.Y.Y.1898: P 5398:6850(1452) ack 431 win
15972
15:05:23.739938 IP Y.Y.Y.Y.1898 > X.X.X.X.2000: . ack 6850 win 65535
15:05:23.871428 IP X.X.X.X.2000 > Y.Y.Y.Y.1898: P...
2019 Jul 31
0
CEBA-2019:1899 CentOS 7 bind BugFix Update
CentOS Errata and Bugfix Advisory 2019:1899
Upstream details at : https://access.redhat.com/errata/RHBA-2019:1899
The following updated files have been uploaded and are currently
syncing to the mirrors: ( sha256sum Filename )
x86_64:
a83beee98e40f8ac18c0b63dfc110975c7113c753ac42b6315ddd807ae2ecfe6 bind-9.9.4-74.el7_6.2.x86_64.rpm
2d2d...
2010 Nov 23
2
Lattice and Quartz
I ran this script in a source file on my Mac:
library(lattice)
year <- 1900:2000
dollars <- (year-1899)^2
plot(year,dollars)
quartz("year")
histogram(~dollars)
The first plot appears in Quartz 2. The second quartz window, named year, opens but the histogram doesn't appear.
However, when I copy and paste this script directly into the R console, both quartz windows (Quartz 2 and year)...
2003 Jul 31
4
timezones
...rn
-5 hours?
Problem 2. Why do the two expressions below give different answers?
I take the difference between two dates in GMT and then repeat it in the current time zone (EDT).
# days since origin in GMT
> julian(as.POSIXct("2003-06-29",tz="GMT"),origin=as.POSIXct("1899-12-30",tz="GMT"))
Time difference of 37801 days
# days since origin in current timezone
> julian(as.POSIXct("2003-06-29"),origin=as.POSIXct("1899-12-30"))
Time difference of 37800.96 days
I thought this might be daylight savings time related but even with
s...
2002 Aug 13
1
interaction.plot() legend too narrow when mfcol > 2 (PR#1899)
Here is an example:
The legends (mainly the factor level names) are cut off on the
right. Somehow the internal calculation which computes
horizontal space for the legend is not flexible enough.
## Call a new graphics window {with default par()s !}:
get(getOption("device"))()
par(mfrow = c(2,2))
## part of example(interaction.plot) _improved_ using with() :
data(OrchardSprays)
2016 Jun 02
1
[PATCH -next 2/2] virtio_net: Read the advised MTU
...Aaron-Conole/virtio-net-Advised-MTU-feature/20160603-000714 HEAD d909da4df3c52f78b4f5fcccd89aea5e38722d10 builds fine.
It only hurts bisectibility.
All errors (new ones prefixed by >>):
drivers/net/virtio_net.c: In function 'virtnet_probe':
>> drivers/net/virtio_net.c:1899:31: error: 'VIRTIO_NET_F_MTU' undeclared (first use in this function)
if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
^~~~~~~~~~~~~~~~
drivers/net/virtio_net.c:1899:31: note: each undeclared identifier is reported only once for each function it ap...
2016 Jun 02
1
[PATCH -next 2/2] virtio_net: Read the advised MTU
...Aaron-Conole/virtio-net-Advised-MTU-feature/20160603-000714 HEAD d909da4df3c52f78b4f5fcccd89aea5e38722d10 builds fine.
It only hurts bisectibility.
All errors (new ones prefixed by >>):
drivers/net/virtio_net.c: In function 'virtnet_probe':
>> drivers/net/virtio_net.c:1899:31: error: 'VIRTIO_NET_F_MTU' undeclared (first use in this function)
if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
^~~~~~~~~~~~~~~~
drivers/net/virtio_net.c:1899:31: note: each undeclared identifier is reported only once for each function it ap...
2006 Jan 04
5
check if a file exists?
...I have a list of people on a page, and some of this people have pictures
of them stored on the web server. So I have an image tag like this on my
page:
<%= image_tag "/images/people/" + person.pers_id.to_s + ".jpg" %>
But not all have a picture, so if the file for pers_id=1899 does not
exist, i would like to display a custom image for that guy.
How can I do that?
--
+S2
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 254 bytes
Desc: OpenPGP digital signature
Url : http://wrath.rub...
2003 Dec 06
3
Axe time of series in format yy-mm-dd
I'm trying to plot a ibm stock time series.
I made the download of that series,
ibm <- get.hist.quote(instrument = "ibm", start = "2003-01-01",quote=c("CL"))
And ibm is a serie wiht this characteristic:
Start = 37623
End = 37960
Frequency = 1
When I try to plot it,
ts.plot(ibm)
In the graphic the axe time is represented by 37623 ... 37960, How can I put
2011 Aug 18
1
Loop trouble with Excel Serial Numbers!
...ot;thedate" entry, I get a correct answer. But if I try using the for
loop, I get bizarre numbers in "mynewdata".
thedate<-as.matrix(40548:40759,ncol=1)
exdate<-function(){
mynewdate<-NULL
for(i in 1:nrow(thedate)){
mynewdate[i]<-as.Date(thedate[i,1],origin="1899-12-30")
}
print(mynewdate)
}
exdate()
Thank you very much!
Anna
[[alternative HTML version deleted]]
2005 Sep 29
2
Don't call
I have set up extension.conf and sip.con with default
parameter of UNIVOICE server, but Asterisk show this
message when I call a number:
Sep 29 11:34:52 WARNING[4179]: chan_sip.c:1899
create_addr: No such host: univoice,Ttr
Sep 29 11:34:52 NOTICE[4179]: app_dial.c:1109
dial_exec_full: Unable to create channel of type 'SIP'
(cause 3 - No route to destination)
== Everyone is busy/congested at this time (1:0/0/1)
-- Executing Hangup("SIP/100-2331", "&qu...
2009 Sep 24
2
aggregate() - error message
...tch
7329 35,36 172.7453?? 0.0041???? 35,36
7371 36,35 172.7453?? 0.0004???? 35,36
7372 35,36 172.7453?? 0.0000???? 35,36
7373 36,35 172.7453?? 0.0004???? 35,36
7374 35,36 172.7453?? 0.0001???? 35,36
?
TripsData?2
?
????????????Trip Distance TimeDiff Tripmatch
1617 19,20 1087.365?? 0.0441???? 19,20
1899 20,19 1087.365?? 0.0207???? 19,20
1915 19,20 1087.365?? 0.0361???? 19,20
3285 20,19 1087.365?? 0.0356???? 19,20
3826 19,20 1087.365?? 0.0697???? 19,20
2006 Aug 28
2
problem booting msdos with memdisk
...1
e820: 00000000000f0000 0000000000010000 2
e820: 00000000fff00000 0000000000100000 2
e820: 0000000000100000 0000000007f00000 1
Ramdisk at 0x07d61000, length 0x00168000
command line: initrd=images/msdos/msd622bd.dosim BOOT_IMAGE=memdisk
Disk is floppy 0, 1440 K, C/H/S = 80/2/18
Total size needed = 1899 bytes, allocating 2K
Old dos memory at 0x9fc00 (map says 0xa0000), loading at 0x9f400
1588: 0xffff 15E801: 0x3c00 0x06d6
INT 13 08: Failure, assuming this is the only drive
old: int13 = f000ac5e int15 = f000a60a
new: int13 = 9f400008 int15 = 9f400290
Loading boot sector... booting...
from then...
2013 Mar 12
5
extract values
...uot;,
"1883", "1884", "1885", "1886", "1887", "1888", "1889", "1890",
"1891", "1892", "1893", "1894", "1895", "1896", "1897", "1898",
"1899", "1900", "1901", "1902", "1903", "1904", "1905", "1906",
"1907", "1908", "1909", "1910", "1911", "1912", "1913", "1914",
"1915", &quo...
2011 May 10
3
ERROR: -91 after Kernel Upgrade
...[ 805.296453] (mount.ocfs2,13964,2):dlm_register_domain:2143 ERROR:
status = -92
[ 805.296453] (mount.ocfs2,13964,2):o2cb_cluster_connect:313 ERROR:
status = -92
[ 805.296453] (mount.ocfs2,13964,2):ocfs2_dlm_init:3086 ERROR: status = -92
[ 805.296504] (mount.ocfs2,13964,2):ocfs2_mount_volume:1899 ERROR:
status = -92
[ 805.296504] ocfs2: Unmounting device (8,17) on (node 0)
[ 807.300027] o2net: no longer connected to node server3 (num 2) at
10.10.21.13:7777
[ 807.300074] o2net: no longer connected to node server4 (num 3) at
10.10.21.14:7777
Does anybody know this problem? Is this err...
2007 Jun 04
3
Calls being dropped
...-- Executing [103@from-sip:1] Dial("SIP/9097406868-09e110f8",
"SIP/103|50|m") in new stack
-- Called 103
-- Started music on hold, class 'default', on SIP/9097406868-09e110f8
-- SIP/103-09dedd68 is ringing
[May 29 09:05:22] WARNING[2678]: chan_sip.c:1899 retrans_pkt: Maximum
retries exceeded on transmission LAXMGC0120070529230718052251@209.244.63.13
for seqno 1 (Critical Response)
[May 29 09:05:22] WARNING[2678]: chan_sip.c:1916 retrans_pkt: Hanging up
call LAXMGC0120070529230718052251@209.244.63.13 - no reply to our critical
packet.
-- Stopp...
2013 Mar 13
2
merge datas
...uot;, "1883", "1884",
"1885", "1886", "1887", "1888", "1889", "1890", "1891", "1892",
"1893", "1894", "1895", "1896", "1897", "1898", "1899", "1900",
"1901", "1902", "1903", "1904", "1905", "1906", "1907", "1908",
"1909", "1910", "1911", "1912", "1913", "1914", "1915", &quo...
2004 Mar 06
0
Summary: as.POSIXct
...t, you should certainly be
>able to do
>
>as.POSIXct(strptime(as.character(testDATES), "%m/%d/%y"))
This still resulted in NA's on my system.
>
>Here's what I think you can do most easily:
>
>shift <- julian(1,1,1970, origin=c(month = 12, day = 30, year = 1899))
>as.POSIXct(chron(dates=unclass(testDATES) - shift))
But this worked.
From Gabor Grothendiec:
>At any rate, one idea is to create the chron dates
>relative to the default origin like this:
>
> > testDATES<-c(35947,35971,36004,36008,36053,36066)
>> testDATES.chron...