search for: mintime

Displaying 16 results from an estimated 16 matches for "mintime".

Did you mean: minime
2006 May 18
2
How to debug the rendering in Rails?
...def mailing_lists @ml = MailingList.find_by_identifier(@params[:id]) @messages = @ml.messages @headers["Content-Type"] = "application/atom+xml" @response.headers[''Last-Modified''] = @messages.last.created_on.httpdateunless @ messages.empty? minTime = Time.rfc2822(@request.env["HTTP_IF_MODIFIED_SINCE"]) rescue nil if minTime and @messages.first.created_on <= minTime render :text => ''Not Modified'', :status => 304 end end This works fine in development, but not in production. The funny thin...
2014 Jun 03
3
error de incompatible methods
...de que mi base de datos tenia las horas en formato 00:00:00, entonces me anhadia dos ceros mas, entonces no ejecute el ultimo comando y ahora al ejecutar este comando desp+ues del anterior: DBfishing<- na.omit(DBx[(DBx$calcSpeed<=speedFishing & DBx$distHb>distHbRule & DBx$Time>minTime & DBx$Time<=maxTime),]) Me da este error:Warning messages: 1: In `[.data.frame`(DBx, (DBx$calcSpeed <= speedFishing & DBx$distHb > : Incompatible methods ("Ops.factor", "Ops.times") for ">" 2: In `[.data.frame`(DBx, (DBx$calcSpeed <= speedFis...
2014 Jun 04
2
error de incompatible methods
...el mismo problema de ayer , despues de reiniciar y demas el tinnR y el R, no se si me vacila o es que tengo algo mal en realidad. Despues el error esta en los símbolos o algo com el tiempo DBfishing<- na.omit(DBx[(DBx$calcSpeed<=speedFishing & DBx$distHb>distHbRule & DBx$Time>minTime & DBx$Time<=maxTime),]) Porque lo ejecute por separado y me funcione pero al poner el tiempo no me funciona y me sale el warning message, mi pregunta es si com el tiempo hay que utilizar otros símbolos de < o > diferentes o algo . Pongo el script entero que utilice y funciono hasta d...
2014 Jul 09
3
error com un archivo
...Year DBx$gear<-codeBoats$Lic[match(paste(DBx$Boat,DBx$Year), paste(codeBoats$CODIGO,codeBoats$Year))] z0<-length(DBx$gear) z1<-length(DBx$gear) z1 #defining speed and distance limits speedFishing<-2.0 speedHarb<-1.0 distHbRule<-3.0 speedSteam<-2.0 minTime<-times(c("05:59:59")) #usual beginning of fishing operations maxTime<- times(c("20:59:59")) #usual finishing of fishing operations #Selecting Harbour DBharbour<- na.omit(DBx[DBx$distHb<=distHbRule & DBx$calcSpeed<=speedHarb,]...
2012 Oct 16
2
R Kaplan-Meier plotting quirks?
Hello. I apologize in advance for the VERY lengthy e-mail. I endeavor to include enough detail. I have a question about survival curves I have been battling off and on for a few months. No one local seems to be able to help, so I turn here. The issue seems to either be how R calculates Kaplan-Meier Plots, or something with the underlying statistic itself that I am misunderstanding. Basically,
2006 May 18
0
SOLVED: Re: How to debug the rendering in Rails?
...ailingList.find_by_identifier(@params[:id]) > @messages = @ml.messages > @headers["Content-Type"] = "application/atom+xml" > @response.headers[''Last-Modified''] = @ > messages.last.created_on.httpdate unless @messages.empty? > > minTime = Time.rfc2822(@request.env["HTTP_IF_MODIFIED_SINCE"]) rescue > nil > if minTime and @ messages.first.created_on <= minTime > render :text => ''Not Modified'', :status => 304 > end > end > > This works fine in development, bu...
2012 Jul 14
3
Can't understand syntax
...1 <- c(1,2,3,4,5) >> var2 <- c(10,20,30,40,50) >> df <- data.frame(dateTime = dateTime, var1 = var1, var2 = var2) >> df$dateTime <- strptime(df$dateTime,"%m/%d/%Y %H:%M") >> >> I want to create 10 minute interval data as follows: >> >> minTime <- min(df$dateTime) >> maxTime <- max(df$dateTime) >> newTime <- seq(minTime,maxTime,600) >> newDf <- data.frame(newDateTime = newTime) >> newDf <- merge(newDf,df,by.x = "newDateTime",by.y = "dateTime",all.x = >> TRUE) >> >&g...
2005 Sep 04
0
Displaying RProf output
...f interest, so we can skip them: # (see ?plot.call.tree for all options) plot(profile_glm, startlevel=4) # We might also want to see what's going further down plot(profile_glm, startlevel=4, depth=10) # By default only functions that take longer than 2% of the # total time are shown, setting mintime changes that plot(profile_glm, startlevel=4, depth=10, mintime=1) One interesting thing you can see from this example is that almost 30% of the total time is just spent printing the output - why is it so slow? Well, it looks like print.summary.glm calculates a lot of the summary statistics. Than...
2007 Jan 12
3
Large file storage in database
I''m in the planning stage of an app that will store images and short video clips approximately 1 meg in size from user uploads. My partner wants to use the database to store all of the files, mainly for scaling purposes. I recently built a similar app using the filesystem, but that was to be run from a single machine. This new app will have 3 application servers and a fileserver
2010 Jul 24
2
Pesos en modelos mixtos
Hola a todos, Me gustaria saber si en un modelo mixto se puede usar el tamaño de muestra como peso o es incorrecto hacerlo. Por ejemplo en el comando 'lmer' del paquete lme4 hay una opcion 'weights' (igual que en 'lm' de stats). Si tengo datos de una medida (por ejemplo el peso) de 10 especies de aves (rango, de 50 a 3000 datos segun la especie) ¿puedo usar esta n en
2019 Oct 07
6
[nbdkit PATCH 0/5] More retry fixes
I think this is my last round of patches for issues I identified with the retry filter. With this in place, it should be safe to interject another filter in between retry and the plugin. Eric Blake (5): retry: Don't call into closed plugin tests: Refactor test-retry-reopen-fail.sh tests: Enhance retry test to cover failed reopen server: Move prepare/finalize/close recursion to
2011 Jan 25
1
[RFC] Updates to ACP smart driver
This patch introduces a handful of new options, I mentioned earlier in: http://www.mail-archive.com/nut-upsdev at lists.alioth.debian.org/msg02088.html See the large commit message in the follow-up for the details and rationale. I realize it's a bit larger diff - so if it's required I can split it into few smaller ones. Michal Soltys (1): APC smart driver update and new features.
2018 May 30
0
Using Google Benchmark Library
...you typically see thousandsd or millions of > invocations for small functions... > Google benchmarks executes the kernel at max 1e9 times or until CPU time is greater than the minimum time or the wallclock time is 5x minimum time, by default min time is 0.5s but we can change it using "MinTime(X)" or "--benchmark_min_time=X". So the stabilization of small/fine grained kernel with google benchmark should not be any problem. > > > > On May 29, 2018, at 2:06 PM, Michael Kruse via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > > > > Thanks...
2006 Jan 20
0
[ANNOUNCE] Asterisk::LCR released on CPAN
...roviders in the future). Currently supports VoIPJet, Nufone, and PlainVoIP. Others providers are invited to contact me if they want to be added to this list. - Pluggable dialing strategies. At the moment there is MinCost (dial from the cheapest to the most expensive providers sequentially) and MinTime (dial the $n cheapest providers simultaneously to minimize post dialing delay). - Capable of translating prefixes so that you can generate dialplans using different dialing locales (for example, using french dialing conventions along with US providers) I'm sure that they are many quirks a...
2018 May 29
2
Using Google Benchmark Library
Not going into all the detail, but from my side the big question is whether the benchmarks inner loop is small/fine grained enough that stabilization with google benchmark doesn't lead to dozens of seconds benchmark runtimes. Given that you typically see thousandsd or millions of invocations for small functions... > On May 29, 2018, at 2:06 PM, Michael Kruse via llvm-dev <llvm-dev at
2004 May 18
0
problems with asterisk-oh323
...(20ms) 1:20.713 RTP Jitter:9e30e60 RTP Received start of talk burst: 3479842523 1:21.649 LogChanRx:9e32b50 H323RTP Receiver written timestamp 3479849883 1:21.854 RTP Jitter:9e30e60 RTP Receive statistics: packets=102 octets=2040 lost=0 tooLate=0 order=0 avgTime=28 maxTime=921 minTime=17 jitter=58 maxJitter=109 1:21.951 RTP Jitter:9e30e60 RTP OnRxSenderReport: ssrc=570855434 ntp=2004/5/18-9:22:42.526581 rtp=0 psent=116 osent=2320 1:21.952 RTP Jitter:9e30e60 RTP OnRxSenderReport RR: ssrc=570855434 fraction=0 lost=16777101 last_seq=0 jitter=0 lsr=0.000 dlsr=0.000 1...