search for: overtime

Displaying 20 results from an estimated 37 matches for "overtime".

2005 May 31
4
Karl
...st as many as he has phone numbers. google "kvj" He doesn't like our president either: Here's look at a MISERABLE FAILURE and I use facts: George W. Bush (herein referred to as 'bushwhack') is the village idiot and he pushed a series of Trojan horses at Americans: 1) The Overtime Pay act is nothing more than a backdoor attempt to strip professionals of overtime pay under the disguise of providing overtime to a mere 800K people. As a result, over 8MILLION Americans loose overtime pay because they make more the 22,000 which is the cutoff point for overtime pay. So ANYONE maki...
2007 Oct 15
4
Suggested IMAP Directory Size..
Hi, ive walked into a enviroment where the previous admin has being using pop and making the email clients leaving a copy of the mail on the workstation.. Now overtime these mailboxes (mbox format) have grown between 1,5 to 1,8 Gigs large I want to convert all these mailbox to IMAP (only 15) and want to know whats the largested suggest folder size per user dovecot IMAP runs smoothly with good responce times.. I know the users also have large OUT LOOK pst fil...
2008 Jun 10
1
OT: Contract job assignment in Huntsville AL for Embedded Linux Developer
...s in kernel/driver development and modification. Primarily new development, but may entail some enhancements to existing systems. Work centers around communications and data capture systems. More details upon request Job Number: HTSV1 Job Location: Huntsville, AL Rate: 100-115 HR Per Diem: Yes Overtime: Yes Duration: 12-18 months Input Date: 06/10/2008
2004 Sep 14
4
[LLVMdev] Files to lib/System/Win32
...ime-consuming projects :) Actually, I don't expect that the Win32 will constantly break once the bulk of LLVM is converted over. LLVM needs precious little support from the operating system. A few fork/exec here, a little mmap there, and some file/path support. That's about it. It may grow overtime, but if we're using a lot of the operating system interface (any operating system interface), we're doing something wrong. > That said, the architectural issues should still be addressed. I agree. Chris made a good point in that there shouldn't be anything wrong with using cygwin...
2016 Apr 05
2
Debugging Samba4 - application sometimes fails because files are invisible/gone
...|scripts/Submission deadlinerepo|open|ok|r|custom/scripts/Submission deadlinerepo|realpath|fail (No such file or directory)|custom/events/Draft Interesting enough the app runs perfect most of the time - but if this happens it ruins a day of computation and deadlines are always super tight meaning overtime for some of us. Can someone shed some light on this? Thank you for your time. Joe Domain dc config: [global] ... server role = active directory domain controller ... Domain member config: [global] ... security = ADS realm = MOO.NET encrypt passwords = yes ......
2018 May 29
1
Difficulty in writing R code for one pool dynamic model
...size of A at time 30. #Step 1: Specify time? Tstart <- 1 Tstop <- 30 Tstep <- 1 #Step 2: Set variables corresponding to pools inA<-5 A <- inA t <- Tstart #Step 3: Set up rate parameters A<-5 kinA <- 5 koutA <- 0.2 #Step 4: Write arrays that track pool size overtime val <- array(1, dim=c(1, length(seq(Tstart,Tstop, by=Tstep)))) val #Step 5: Set up while loop we use to runintegration ?while(t<=Tstop){ ?if(t==Tstart) A <- inA else A <- val[1, t-1] ??# Setup rates ? inA<- kinA*A ? outA<- A*koutA ? A <-A+inA-outA ?val[1,t] <- A...
2018 Mar 23
2
File system permissions - setgid bit and Netapp NFS volumes
...h the other components of my system, the Mail Storage directories are expected to have permissions: drwx--S--- uid 89: gid 89 The oddity I am encountering came up recently when I set up a job to monitor and correct directory permissions. I found after observing the system in action that overtime, the ~/Maildir directories for all active mailboxes would mysteriously lose the setgid bit. Now, while the system still functioned, it was something unexpected so I investigated further by turning on auditd to monitor what was changing the permissions on the path. After tracing through the resu...
2016 Apr 08
1
Debugging Samba4 - application sometimes fails because files are invisible/gone
...custom/scripts/Submission >> deadlinerepo|realpath|fail (No such file or directory)|custom/events/Draft >> >> Interesting enough the app runs perfect most of the time - but if >> this happens it ruins a day of computation and >> deadlines are always super tight meaning overtime for some of us. >> Can someone shed some >> light on this? Thank you for your time. >> Joe > Sorry, but there's not enough info for us to > determine what might be the problem. Getting > it repeatable will be the first step. > Thank you Jeremy for answering my post...
2005 Oct 18
4
dom0 oom-killer: gfp_mask=0x1d
I had the dom0 which unfortunately didn''t have a console on it hit a race condition and saw oom errors on it also. This happened after it was running for over 36 hours with a domU whose load average was avg was around 3 most of the time. changeset: 7396:9b51e7637676 Dom0 - UP i686, Centos 4.1, 768 megs domU-1 92 megs snmpd domU-2 92 megs snmpdd domU-3 410 megs postgres, tomcat 5.5,
2004 Dec 29
9
IP Phone recommendations?
...them. 1. Test and evaluate Asterisk with TDM400 with 1 FXO/FSO port each. 2. Configure Asterisk to be the primary PBX and slave the Nortel Meridian system to it using a second TDM400. This avoids immediate replacement of all handsets. Will allow immediate access to features such as Voicemail. 3. Overtime, upgrade desk phones to IP phones. When all phones are replaced, decommission Nortel and sell on Ebay. :) Cold turkey option is to spend the extra $ and buy the handsets upfront and just ditch nortel without a transition period. We currently have 4 pbx lines and 1 dedicated fax/credit card line...
2007 Apr 14
0
FreeBSD Job Opportunity in Manhattan
...ted please send an updated resume to nathan.madsen@algomod.com Regards, Nathan Madsen Algomod Technologies Corporation 116 John Street New York, NY 10038 Job # : 07-03069 Job Title : Senior Systems Administrator Job Location : New York, NY 10011 Travel Required : No Overtime Required : Yes Position Type : Full Time Job Description : Our client, a top ten Web property and one of the Internet's leading content destinations, is looking for a highly motivated Senior Systems Administrator to add to its Operations group. The ideal candidate will be ex...
2011 Aug 15
0
Stopping criterion in option "control" of BBsolve( )
...() function run about 2 seconds and then successfully converge. I specified maxit and noimp as large as 10000. However, the BBsolve function returns nonconvergence only after 0.25 seconds and after 100 iterations. > tst.fn = function(x) { if((proc.time() - R.ptm)[3] > 2) { cat("overtime.\n"); return(c(0,0)); } else { return(c(2,2)); } } > system.time( { R.ptm = proc.time(); tst = BBsolve(par=c(1,1), fn = tst.fn , control = list(maxit = 10000, noimp=10000)) } ) Unsuccessful convergence. user system elapsed 0.25 0.00 0.25 > tst $par [1] 0.5 0.6 $re...
2011 Mar 08
1
Curious problem: Plaintext authentication disallowed on non-secure (SSL/TLS) [read: all] connections.
...I have set 'disable_plaintext_auth = no' (see output of doveconf attached). More curious still is that *this happens for SSL connections too*. Something seems very wrong here. Yelp? -- Andrew Lewis <andrew at sybaweb.com> ______________________________________ < Uncompensated overtime? Just Say No. > -------------------------------------- \ ^__^ \ (oo)\_______ (__)\ )\/\ ||----w | || || -------------- next part -------------- A non-text attachment was scrubbed... Name: doveconf.conf Type: application/o...
2003 Jan 10
0
Wine and DM Genie
.... I downloaded DM Genie[1] and the install works more or less flawlessly from Wine. When I run the installed executable, though, problems ensue. The splash screen shows up and proceeds to load a number of modules/data, but then stops around 75% and my HDD starts thrashing (kswapd starts working overtime) and response becomes very sluggish. I did a relay trace and it looks like this is due to the program falling into a more or less endless loop of heap reallocations. (I see page after page of the relay trace that're more or less identical, though I haven't inspected the fine details of re...
2016 Apr 08
0
Debugging Samba4 - application sometimes fails because files are invisible/gone
...linerepo|open|ok|r|custom/scripts/Submission > deadlinerepo|realpath|fail (No such file or directory)|custom/events/Draft > > Interesting enough the app runs perfect most of the time - but if > this happens it ruins a day of computation and > deadlines are always super tight meaning overtime for some of us. > Can someone shed some > light on this? Thank you for your time. > Joe Sorry, but there's not enough info for us to determine what might be the problem. Getting it repeatable will be the first step.
2008 Oct 30
2
Attention Non-Linux Wine Users
...Be sure to use an appropriate label. For example, I use: aenglish-pc-bsd7 or aenglish-opensolaris. This will give developers more information to identify bugs on these OS's. For bonus points, run daily, as new tests and fixes are added daily (usually Monday-Friday, unless Alexandre is working overtime :-D). -- -Austin
2005 May 19
4
LOOKING TO HIRE
...O), which receive favorable tax treatment. Time Off Our Company provides time off for vacation, personal days, vacation days, sick days, jury duty, voting, military leave, holidays, & medical leave. Other Benefits Other perks include: A challenging and tolerant work environment, abundant overtime opportunities for hourly employees, directly deposited pay checks, company activities, discounted web hosting, and a casual dress code as well as the occasional free lunch. Jeffrey S. Richey Director of Operations Telepacket, Inc. E-Mail: vnjobs@excite.com -------------- next part -...
2018 Apr 16
0
File system permissions - setgid bit and Netapp NFS volumes
..., the > Mail Storage directories are expected to have permissions: > > drwx--S--- uid 89: gid 89 > > The oddity I am encountering came up recently when I set up a job to > monitor and correct directory permissions. I found after observing > the system in action that overtime, the ~/Maildir directories for all > active mailboxes would mysteriously lose the setgid bit. Now, while > the system still functioned, it was something unexpected so I > investigated further by turning on auditd to monitor what was changing > the permissions on the path. After trac...
2009 May 07
0
asterisk-users Digest, Vol 58, Issue 17
...signal (what you receive), and deliberately retransmit a small amount of it... just enough (and with the right phasing relationship) to cancel out the portion of his signal which is reflecting off of your line card's impedance discontinuity. > Is there a way to keep track of this issue, and overtime, to configure > it to answer a call by expecting such and such echo, and thus, avoid > starting sampling from scratch every time? To some extent, yes, I believe it's possible at least in part. If you can measure the extent and character of the near-end echo being created in signals you...
2002 Feb 14
2
Small Files/Load Average Information
...s using Explorer. Anyone else noticed this ? Perhaps it occurs on all servers but I cannot say we ever had an inkling of this behaviour using Novell or NT which is what we have replaced. Is it more a problem with the file system ? The block sizing on ext2 ? Or is it Samba in the middle working overtime ? Noel