Displaying 20 results from an estimated 479 matches for "cautious".
2011 Jun 23
6
ext4 in CentOS 5.6?
...y are running ext4 FS's in production, but just want to be
re-assured that there are not currently any major issues before
starting a new project that looks like it will be using ext4.
I've previously been using xfs but the software for this project
requires ext3/ext4.
I'm always very cautious before jumping onto a new FS, (new in the
sense it is officially supported now)
Thanks in advance!
2005 May 08
2
Need a factor level even though there are no observations
...I can readily do:
education.wife <- factor(education.wife, labels=factorlabels)
But this breaks:
education.man <- factor(education.man, labels=factorlabels)
because none of the families have a husband who went beyond college.
I get around this problem in a limited way by:
cautiously <- function(x, labels) {
factor(x, labels=factorlabels[as.numeric(levels(factor(x)))])
}
education.man <- cautiously(education.man, labels=factorlabels)
Now I get:
> table(education.man)
School College
4 4
> table(education.wife)...
2003 Mar 31
2
point-biserial correlation
Dear list,
has anyone written a package/function in R for computing a point-
biserial resp. biserial correlation?
Thanks in advance
Bernd
2010 Feb 04
18
unionfs help
Is it possible to emulate a unionfs with zfs and zones somehow? My zones
are sparse zones and I want to make part of /usr writable within a zone.
(/usr/perl5/mumble to be exact)
I can''t just mount a writable directory on top of /usr/perl5 because then
it hides all the stuff in the global zone. I could repopulate it in the
local zone but ugh that is unattractive. I''m hoping
2006 Dec 22
2
imap failed asssert in imap-bodystructure.c
...ilboxes that I've had the issue with, all had headers that contain
a Spambayes header, usually like so:
X-Spam-Score: 26
X-Spam-Score: 0.6 (/)
Sender: mailman-bounces at acm.uiuc.edu
Errors-To: mailman-bounces at acm.uiuc.edu
X-Spam-Score: 0.1 (/)
X-Authenticated-Sender:
X-Spam-Details: rule=cautious-plus_notspam policy=cautious-plus score=26
mlx=26 adultscore=0 adjust=0 reason=mlx engine=3.1.0-0611300000
definitions=main-0612060023
X-Spam-OrigSender: mailman-bounces at acm.uiuc.edu
X-Spam-Bar: ***
X-Spambayes-Classification: spam; 1.00
X-Spambayes-Trained: spam
I'm not s...
2016 Aug 03
2
seq.int does not return a sequence of integers sometimes
I have a script that goes wrong because I assumed that seq.int would
return integers.
Below please see it does not unless user is super cautious about
inserting "L" with inputs. I think seq.int should do coercion for me
before returning the sequence.
> xx <- seq.int(1,10)
> class(xx)
[1] "integer"
> is.integer(xx)
[1] TRUE
> xx <- seq.int(1,10, 2)
> class(xx)
[1] "numeric"
> is.integer(...
2009 Aug 17
2
[LLVMdev] Code Freeze this Friday!!!
LLVMers,
The 2.6 code freeze is this friday, August 21, at 9pm PDT.
All major changes should be checked into SVN at this time. Please
monitor the buildbots closely for any failures.
I ask you to be very cautious with what you commit to svn over the
next few days. This is not the time to be adding experimental code :)
Please help us keep LLVM as stable as possible over the next few days.
This will make the release much smoother for the release team.
If you have some spare cycles, please review the do...
2007 Jul 27
6
puppet-0.23.1 rpm''s
Hi,
I''ve just built rpm''s for puppet-0.23.1 - since there were a few people
who had trouble with the update for 0.23.0 (the change in config files
requires a bit of rpm trickery), I decided to be a little more cautious
in how I push the new packages.
So far, new packages are (or, will be shortly) available in rawhide,
Fedora 7 updates-testing, and in my yum repos for RHEL4/RHEL5 [1]
Please give them a spin, especially when updating from older versions of
puppet - in my testing, updates worked fine. If you use t...
2005 Jun 06
2
R code for performance
At office I'm cautiously introducing R to be used as the basic statistical
program, getting rid of licensed stuff or reducing the amount of it.
The aim of R would be to run generic statistical programs built & "consumed"
when needed and some static procedure dealing with time-series.
Now, we have substantia...
2018 Jun 08
2
DM 3.6.25 -> 4.x
...db files
rpc: db files
ethers: db files
netmasks: files
netgroup: files
bootparams: files
automount: files
aliases: files
---
should I go to:
passwd: compat winbind files
shadow: compat winbind files
group: compat dns winbind files
? I am just super cautious here ;-)
2015 Jun 15
2
Large jumps in dovecot-uidlist
...it's dovecot from the backports.
> Didn't you notice that since about 2 months there's now jessie out?
I did. Based on my previous experience of upgrading Debian as soon as
the new release was announced and having to roll everything back because
of this problem I'm taking a more cautious approach this time.
> That has 2.2.13 too but maybe it's an issue outside of dovecot in some
> library. Or just a bug in the backport.
Possibly. I'm not against doing the full upgrade to Jessie to see what
effect that has. I've been running the backport for a while and the
probl...
2014 Mar 10
2
[GSoC 2014] About "Clustering of Search Results"
Hello. I am Liu Chi(??) from Peking University, China. I am planning to
join GSoC. I am interested in Xapian and looking forward to find something
interesting in GSoC 2014 Project Ideas List.
The topic of "Clustering of Search Results" looks interesting and I think
it suits me. I have been involved in a project that aims to clustering
tweets based on the text similarity and user
2013 Jul 25
2
[LLVMdev] [PROPOSAL] ELF safe/unsafe sections
Then how about enable these flags for -O2? I want to hear from other people
cc'ed, and I may be too cautious, but I'd hesitate to define a new ELF
section if there's other mean already available to achieve the same thing.
On Thu, Jul 25, 2013 at 2:12 PM, Shankar Easwaran
<shankare at codeaurora.org>wrote:
> Not all users compile their code with -ffunction-sections and
> -fdata-secti...
2019 Sep 05
1
[PATCH libnbd] configure: Ban use of Variable Length Arrays (VLAs).
Since we don't know much about the calling environment, which might
have a limited stack, might be taking input from untrusted sources, or
we might not have other stack protections enabled, it's best to be
cautious about using unbounded stack allocations.
We're not in fact using them in libnbd, but this change prevents them
from being added in future.
---
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 6ea3197..0332d77 100644
--- a/confi...
2015 Aug 17
0
LibreSSL on CentOS 7
Hello list,
I've recently been working with LibreSSL on CentOS 7 and I thought I'd
share it.
I would be cautious about using it on production servers, but it seems
to be behaving itself for me.
https://librelamp.com/
I packaged it to install in parallel with OpenSSL rather than replace it.
Apache (2.4.16), MariaDB (5.5.45) and PHP (5.6.12) complete the lamp stack.
With MariaDB I did have to disable six t...
2019 Dec 02
2
Debian Stretch - > buster: samba packages
Hai,
Sorry for the late reply.
Here its just apt-get distupgrade --autoremove --purge
Without the autoremove libldb1 is not removed so libldb2 can be installed.
Greetz,
Louis
> -----Oorspronkelijk bericht-----
> Van: samba [mailto:samba-bounces at lists.samba.org] Namens
> Stefan G. Weichinger via samba
> Verzonden: zaterdag 30 november 2019 20:33
> Aan: samba at
2010 Jan 14
1
Latest revision and backwards compatibility
Greetings,
I've been wondering about the index format and backwards compatibility.
We're using the dev version (for chert) and each svn up means that any
indexes created prior to this revision cannot be read. Is this purely a
cautious move to prevent errors, and, barring any obvious index format
changes, can I safely force the current revision to read existing indexes?
eg, by commenting out the throw in
xapian-core/backends/chert/chert_version.cc.
Or is there a better way?
Thanks
Henry
2006 Oct 30
1
removing syslinux files from windose
Hi
I've searched the archives and was not able to find an anwser. I have
unzipped syslinux into my C: drive instead of putting it into its own
directory. Being cautious I do not want to delete all matching
files/directories in the syslinux zip file that match in the C: drive.
Afraid that syslinux might have overwritten some with a syslinux version.
I do not have a clue.
Can someone tell me it it is alright to delete those files/directories?
Thanks for any help.
2004 Aug 07
1
WARNING[1264581056]
...r "send dtmf" in audio, and on the
asterisk box, sip.conf has dtmfmode set to inband. Everything seems to
be working fine, however, I see my console get flooded with the
following warning:
"dsp.c:1467 ast_dsp_process: Unable to process inband DTMF on 256
frames"
Should I be cautious about them or just ignore? Better still, what
should I do so that these warnings are not generated.
Thanks,
-- sudhir
2001 Sep 24
1
ext3-2.4-0.9.10
An ext3 patch against linux 2.4.10 is at
http://www.uow.edu.au/~andrewm/linux/ext3/
This patch is *lightly tested* - ie, it boots and does stuff.
The changes to ext3 are small, but the kernel which it patches
has recently changed a lot. If you're cautious, please wait
a couple of days.
The patch retains the buffer-tracing code. This will soon be
broken out into a separate patch to make ext3 suitable for
submission for the mainstream kernel.
Changelog:
- Fix an oops which could occur at unmount time due to non-empty
orphan list. This could be...