search for: last_seen

Displaying 13 results from an estimated 13 matches for "last_seen".

2012 Oct 23
7
Not updating the updated_at field
This is for Rails 3.1.1 I have a field called last_seen in a model. This field will be updated when the something about the record is seen in the real world (don''t worry about this part) So I go x.update_attribute(:last_seen, Time.now) and the following happens is UPDATE "blah" SET "last_seen" = ''2012-10-23 08:57:...
2006 Aug 21
0
[LLVMdev] Recalculating live intervals
...eg); unsigned p_reg = this->reg_mapping->get_physical_location(v_reg); // Now, it is necessary to break the live range of the spilled register. // This is done by creating new virtual registers, and substituting the // spilled register by the new registers. MachineInstr * last_seen; std::vector< MachineInstr * > & use_sites = this->def_use_sites->get_use_sites(v_reg); for(unsigned u = 0; u < use_sites.size(); u++) { MachineInstr * mi = use_sites[u]; if(mi == last_seen) { continue; // this happens when the same virtual is...
2013 Jul 03
2
[Bug 9995] New: Rsync 3.1 dev :
...ADHYX/Dev/Rsync/Git/rsync> /opt/Rsync/bin/rsyncdb --db=/opt/Rsync/dbconfig --init --mounts Creating DB rsync (if it does not exist) Dropping old tables (if they exist)) Creating empty tables ... [rsyncdb] Prepare failed: Table 'rsync.disk' doesn't exist INSERT INTO disk SET host = ?, last_seen = ?, mount_uniq = ?, devno = ? ON DUPLICATE KEY UPDATE last_seen = VALUES(last_seen), devno = VALUES(devno) Marking mount "Mount of /dev/sda4" (2052) as recently seen Erreur de segmentation The Mysql query in db.c file do not work. CREATE TABLE disk ( disk_id integer...
2006 Aug 21
2
[LLVMdev] Recalculating live intervals
So what addIntervalsToSpills returns are new intervals to allocate with infinite weights, right? And I need not to allocate the old interval. Should hasStackSlot return true on its register then? On 8/21/06, Fernando Magno Quintao Pereira <fernando at cs.ucla.edu> wrote: > > > Well, someone correct me if am wrong, but, you still have to allocate > physical registers to them,
2006 Jun 23
0
Newbie: where to put input validation and model aggregations
...uot; columns as dates or present the results as simple aggregations ... where/how is the best way to specify this: model, controller, or view? For example, if I have a table that is something like: "t TIMESTAMP, event VARCHAR" and I would like the output to look like: "first_seen, last_seen, count, event" which would be constructed from a SQL query like: "SELECT min(t) as first_seen, max(t) as last_seen, count(1) as count, event FROM mytable GROUP BY event" how should I structure my models? Should I have 2 models, 1 for the raw and one for the aggregate (based on a D...
2007 Apr 27
11
[Bug 562] Recent module is not working for the ppp0 (external) interface.
https://bugzilla.netfilter.org/bugzilla/show_bug.cgi?id=562 ------- Additional Comments From kaber@trash.net 2007-04-27 02:41 MET ------- I asked you to post this with additional information to the mailinglists, so pleast at least include the information here or post it to the lists as I asked. -- Configure bugmail: https://bugzilla.netfilter.org/bugzilla/userprefs.cgi?tab=email -------
2006 Aug 21
3
[LLVMdev] Recalculating live intervals
...->reg_mapping->get_physical_location(v_reg); > > // Now, it is necessary to break the live range of the spilled > register. > // This is done by creating new virtual registers, and substituting > the > // spilled register by the new registers. > MachineInstr * last_seen; > std::vector< MachineInstr * > & use_sites = > > this->def_use_sites->get_use_sites(v_reg); > for(unsigned u = 0; u < use_sites.size(); u++) { > MachineInstr * mi = use_sites[u]; > if(mi == last_seen) { > continue; // this hap...
2005 Jun 03
2
POP3 download problem
Hi All I am experiencing a mail download problem with dovecot's pop3 protocol. We use outlook XP 2002 mail clients and I have setup a mail system with pop accounts on a Fedora 2 installation using dovecot. Some of the clients download email fine but others do not download email and also do not give any error messages. I have enabled the "verbose" options in the
2013 Jan 03
20
[PATCH] Switch to poll in xenconsoled's io loop.
...FD_REVENTS(d->master_fd) & POLLIN) handle_tty_read(d); - if (d->master_fd != -1 && FD_ISSET(d->master_fd, - &writefds)) + if (d->master_fd != -1 && + FD_REVENTS(d->master_fd) & POLLOUT) handle_tty_write(d); if (d->last_seen != enum_pass) @@ -1082,6 +1088,10 @@ void handle_io(void) if (d->is_dead) cleanup_domain(d); } + +#undef MAX_POLL_FDS +#undef SET_FDS +#undef FD_REVENTS } out: -- 1.7.10.4
2010 Apr 09
0
iptables info in proc - ttl
Hello List, I am having problem in getting iptables recent module working for me, so I was looking into /proc to get some clues. I see following line in the /proc for my iptables recent rule: # cat /proc/net/ipt_recent/badguy src=10.0.0.17 ttl: 63 last_seen: 3301974512 oldest_pkt: 2 3301973507, 3301974512 What does ttl mean? Is it time-to-live or what? What does it signify? -- CS
2006 Jul 26
15
Rails without a primary key
I''ve been trying to use Rails on a database where the biggest datawarehouse-style table doesn''t have a primary key. It really doesn''t make sense and just adds extra unnecessary space. I do have, however, a column that I normally use to search on (IP) that returns many rows. The table also references several other tables through rails-friendly foreign keys. Simple AR
2010 May 26
6
[PATCHv2-RFC 0/2] virtio: put last seen used index into ring itself
Here's a rewrite of the original patch with a new layout. I haven't tested it yet so no idea how this performs, but I think this addresses the cache bounce issue raised by Avi. Posting for early flames/comments. Generally, the Host end of the virtio ring doesn't need to see where Guest is up to in consuming the ring. However, to completely understand what's going on from the
2010 May 26
6
[PATCHv2-RFC 0/2] virtio: put last seen used index into ring itself
Here's a rewrite of the original patch with a new layout. I haven't tested it yet so no idea how this performs, but I think this addresses the cache bounce issue raised by Avi. Posting for early flames/comments. Generally, the Host end of the virtio ring doesn't need to see where Guest is up to in consuming the ring. However, to completely understand what's going on from the