search for: tablec

Displaying 3 results from an estimated 3 matches for "tablec".

Did you mean: table
2006 Feb 23
9
Balancing multiple connections and NAT
...looks something like this: Interface IP Gateway Table Network --------- -- ------- ----- ------- intA ipA gwA tableA netA intB ipB gwB tableB netB intC ipC gwC tableC netC [intD is the LAN interface] intD ipD (private) no gateway global netD This works fine most of the time, except that once in a while (every 5-10 minutes or so) packets going out on (e.g.) intB suddenly start getting NAT''ed to source address ipA (i.e. the address of a...
2012 Mar 29
2
subtract a list of vectors from a list of data.frames in an elegant way
...an elegant way. Thanks for reading. Erick ###### begin R code ###### DBquery ? ? <- list(tableA=data.frame(id = numeric(0), atwin = numeric(0), atrout = numeric(0)), ? ? ? ? ? ? ? ? ? ?tableB=data.frame(id = numeric(0), mq ? = numeric(0), z = numeric(0), m = numeric(0)), ? ? ? ? ? ? ? ? ? ?tableC=data.frame(V1 = numeric(0), mfn ? = numeric(0), iiff = numeric(0)), ? ? ? ? ? ? ? ? ? ?tableD=data.frame(id ? ?= numeric(0), msf ? = numeric(0), oom ?= numeric(0))) lookup ? ? <- list(tableA= ? c('atwin', 'atrout'), ? ? ? ? ? ? ? ? ? tableB= ? ?c('m', 'z'), ?...
2005 Oct 31
2
Cascading Comboboxen and GO button ?
Hello all, I have two comboboxen, comboA is popultaed when :controller/list is retrieved first time. When comboA is selected, I want to auto-populate comboB (modelB belongs_to modelA). The population of tableC (modelC belongs_to modelB and belongs_to modelA) should not populate until a "GO" button is clicked (link_to with submit). Help? I need an example of how to filter the post @params and also how to preserve teh selections when "GO" is clicked. In my current code, "GO"...