Displaying 4 results from an estimated 4 matches for "todelet".
Did you mean:
codelet
2012 Mar 07
1
help with time data - R weird behaviour across machines
...llo list,
I was hoping I could get some help on something which is really giving
me a headache. I am using R version 2.14.1 (2011-12-22)
(Platform: x86_64-pc-mingw32/x64 (64-bit))
An object which is supposed to have times has a few elements listed as
not times but NA's
> ls()
[1] "todelete"
> class(todelete)
[1] "POSIXlt" "POSIXt"
> todelete
[1] "2011-03-27 00:59:57" "2011-03-27 00:59:58" "2011-03-27 01:00:01"
"2011-03-27 01:00:02"
> is.na(todelete)
[1] FALSE FALSE TRUE TRUE
> as.numeric(todelete)
[1...
2005 Nov 16
1
list files to delete, rather than deleting them with --delete?
...N days after they went missing, and am
wondering if there's a way I can coax rsync to give me a list of files
that are missing on the source relative to the destination, so that
they can be later deleted (ie after the N days). I envision a system
like this:
rsync [args] --list-of-missing=FilesToDelete [src] [dest]
and then process ToDelete like so (supposing N is 3):
1. mv ToDelete-2 ToDelete-3 && mv ToDelete-1 ToDelete-2
2. cat ToDelete | grep -vf ToDelete-2 -f ToDelete-3 > ToDelete-1
3. delete from dest files mentioned in ToDelete-3
4. rm ToDelete-3
So I realize I can use --dry...
2013 Aug 02
9
[Bug 2139] New: re-exec fallback problem
...eBSD 9.1-STABLE FreeBSD 9.1-STABLE #2 r251997: Wed Jun
19 11:13:25 PDT 2013 /usr/obj/usr/src/sys/GENERIC amd64
While "make tests" pass successfully, I did stumble upon, potentially
not a new, bug related to fallback re-exec functionality bug.
Here is how to reproduce it.
$ pwd
/tmp/todelete/openssh
$ make tests
$ cd regress
$ /tmp/todelete/openssh/regress/sshd -f
/tmp/todelete/openssh/regress/sshd_config -Esshd.log -dddD
# in a separate window:
$ pwd
/tmp/todelete/openssh/regress
$ mv sshd sshd.o # simulate reexec fallback
$ ../ssh -nqo "Protocol=2" -F ssh_config somehos...
2006 Jul 02
5
Question about setting field values for a belongs_to model
...ments to the skill table
# but with the original values, not the new values
#
# @applicant.skills.find(skillid.to_i).description = newdescription
# @applicant.skills.find(skillid.to_i).save
end
end
if params[:deleteskill]
params[:deleteskill].each do |id, todelete|
if todelete == "1"
@applicant.skills.find(id).destroy
end
end
end
if (@applicant.save)
flash[:notice] = ''Applicant was successfully updated.''
redirect_to :action => ''show'', :id => @applicant...