search for: 17484

Displaying 6 results from an estimated 6 matches for "17484".

Did you mean: 1484
2008 Sep 08
7
[Bug 17484] New: lots of PGRAPH_ERROR/PROTECTION_ERROR
http://bugs.freedesktop.org/show_bug.cgi?id=17484 Summary: lots of PGRAPH_ERROR/PROTECTION_ERROR Product: xorg Version: unspecified Platform: Other OS/Version: All Status: NEW Severity: normal Priority: medium Component: Driver/nouveau AssignedTo:...
2017 Nov 14
1
Dates to numeric in for loop
...- 1:0 > class(dts) [1] "Date" > > for (i in dts) { + print(i) + print(class(i)) + print(as.Date(i, "1970-01-01")) + print(class(as.Date(i, "1970-01-01"))) + } [1] 17483 [1] "numeric" [1] "2017-11-13" [1] "Date" [1] 17484 [1] "numeric" [1] "2017-11-14" [1] "Date" Why is this apparently not a bug? Are there other types that change type when looped over? Kind regards Mikkel _____________________________________________________ *Mikkel Grum* +44 7377337321 (mobile) mikkelgrum (Skype)...
2013 May 03
7
Dovecot Postfix Quota Policy Service
...il postfix/smtp[17476]: 0EB81172391A: to=<daniel at dlutt.de>, relay=127.0.0.1[127.0.0.1]:10025, delay=1.2, delays=0.54/0.02/0/0.65, dsn=2.0.0, status=sent (250 2.0.0 Ok: queued as 00776172391C) May 3 22:00:14 mail postfix/qmgr[17429]: 0EB81172391A: removed May 3 22:00:14 mail dovecot: lmtp(17484): Connect from local May 3 22:00:14 mail dovecot: lmtp(17484, daniel at dlutt.de): dEa8BE4XhFFMRAAAG4AjPw: sieve: msgid=<CAKrzS114MaJGND9BxYUiixMMtORmXJqTA3W13B=QAr0YW_nkUg at mail.gmail.com>: stored mail into mailbox 'INBOX' May 3 22:00:14 mail dovecot: lmtp(17484): Disconnect from...
2005 Jun 19
0
stale nonce received
What does it mean? Jun 19 20:18:39 NOTICE[17484]: chan_sip.c:5472 check_auth: stale nonce received from '<sip:8862270@vpbx.elmit.com>' bye Ronald
2010 Jun 11
0
Wine release 1.2-rc3
...arrior within: everything is upside down during gameplay 17067 Stud_PE crashes on Tools -> Plugins 17175 Crash running Quicken 2008 17242 Regedit: Exported key names containing backslashes are not escaped 17454 Toad's tool 64 doesn't work, needs msvcrt.dll.___lc_handle_func 17484 Leisure Suit Larry 7 refuses to run with Win98 settings 17603 winecfg crashes on encountering unknown (incorrect) dll overrides 17684 ABBYY FineReader 8.0 Professional PL: Fails to start 17705 Audiosurf: crashes at startup 17773 AutoCAD Mechanical 2005 PL: Fails to install 17800 Sil...
2006 May 31
7
How do you create a controller & view to create a list of objects?
I''m trying to figure out how to design a view and controller to work with a simple collection. I have a Foo that has many Bars, so here''s what I did: $ ruby script/generate model Foo $ ruby script/generate model Bar (Uncomment t.column, :name: :string in foo and bar migrations) (Edit Foo.rb and Bar.rb, add has_many :bars to Foo, belongs_to :foo to Bar) $ rake db:migrate $ ruby