Displaying 20 results from an estimated 268 matches for "harvest".
Did you mean:
hardest
2010 Jan 26
2
[LLVMdev] some llvm/clang missed optimizations
A few random observations:
1.
Clang could do better with large but boring switches like this:
http://embed.cs.utah.edu/embarrassing/jan_10/harvest/source/E8/E88C5111.shtml
Performance of clang's output will be fine but this is a major code size
lose.
2.
Destruction of stupid loops is incomplete, sometimes due to phase
ordering problems:
http://embed.cs.utah.edu/embarrassing/jan_10/harvest/source/FC/FCADC848.shtml
Sometimes not:
ht...
2005 Feb 09
12
Harvesting and Dictionary attacks
Is there a way to listen on port 25 for repeated dictionary attacks to
harvest email
address and blacklist that Ip with shorewall?
Thanks,
Mike
2005 Aug 15
2
warning: dovecot list is being harvested
Just a warning to dovecot listmembers. The list is being harvested.
test3943395 is a unique address I created only for communication to the
dovecot list.
The following spam came from:
Received: from dial-dynamic-62-69-52-187.surfdial.murphx.net (dial-dynamic-62-69-52-187.surfdial.murphx.net
[62.69.52.187])
by sasami.anime.net (8.11.6/8.11.6) with SM...
2002 Aug 06
3
hard to believe speed difference
...n = 500000;
result = numeric(n);
for(i in 1:n) result[i] = normal.truncated(0,1, -10, 10)[1]
print(date());
Java Code:
package Mcdonald;
import VisualNumerics.math.*;
import java.util.*;
public final class normal_univariate_truncated
{
public double harvest, prob;
static Random ran_obj = new Random();
public normal_univariate_truncated(double mean, double var,
double lower, double upper)
{
double sd = Math.sqrt(var);
lower -= .5;
upper += .5;
double left = (lower - mean)/...
2010 Jan 27
2
[LLVMdev] some llvm/clang missed optimizations
>> Repetitive code with lots of bitwise operations is compiled by LLVM into
>> much larger code than the other compilers:
>>
>> http://embed.cs.utah.edu/embarrassing/jan_10/harvest/source/ED/ED37DAF5.shtml
>> http://embed.cs.utah.edu/embarrassing/jan_10/harvest/source/1F/1F4003C7.shtml
>>
>> Note that this is straight-line code, so LLVM's output will run 4-5
>> times longer than everyone else's.
>>
>> I'll be interested to learn...
2010 Jan 27
2
[LLVMdev] some llvm/clang missed optimizations
> Umm, can you find one that isn't a popcount implementation?
Ok.
MMX psadbw instruction:
http://embed.cs.utah.edu/embarrassing/jan_10/harvest/source/CE/CE3DA132.shtml
Position of first set bit:
http://embed.cs.utah.edu/embarrassing/jan_10/harvest/source/1F/1F4003C7.shtml
Log2 floor:
http://embed.cs.utah.edu/embarrassing/jan_10/harvest/source/83/837A80E9.shtml
Pixel format conversion:
http://embed.cs.utah.edu/embarrassing/jan_10/har...
2010 Jan 26
0
[LLVMdev] some llvm/clang missed optimizations
On Tue, Jan 26, 2010 at 12:36 PM, John Regehr <regehr at cs.utah.edu> wrote:
> 2.
> Sometimes not:
>
> http://embed.cs.utah.edu/embarrassing/jan_10/harvest/source/EC/ECC74C0C.shtml
The primary issue here is that scalar evolution doesn't know how to
deal with loops using "sle" for the exit condition. Shouldn't be too
hard to fix now that we have overflow flags for addition.
> 3.
>
> Repetitive code with lots of bitwise ope...
2002 Jul 09
0
Offtopic: Mailing List was harvested
Just a quick note to those who care, I received a UCE this morning
addressed to samba-337@ccp.com.au, the only place this was used was when
emailing to this list. I can only conclude that either the list itself was
harvested or someone has gone through the archive and harvested that.
The Email actually came from 200.171.136.80 which has an abuse email
address of abuse@telesp.net.br
The Email attempts to hide by saying it came from 134.68.69.115, that
received header is fake.
Anyway thats all I wanted to say, if y...
2012 May 17
1
BEWARE: This list is being harvested for leads
...claiming to be '"Tim Saarela" <tim.saarela at dovecot.fi>' is
sending out a pitch for "Enterprise Level Support" for Dovecot. The
address of mine which he hit is only ever used for this mailing list, so
it is clear that whatever the mechanism, this list is being harvested
for commercial leads.
2018 Dec 01
3
Mailing list address harvested for spamming
Not to stir the pot, but I notice my email address has recently been
harvested from this list for spamming purposes. This email address is
unique and not used for anything else.
I'd distinguish this from spam sent to the mailing list itself, which is
obviously different.
Is there anything further that could be done to prevent this?
--
Dave
2005 Apr 12
1
Cumulative Points and Confidence Interval Manipulation in barplot2
R-Users,
I am working with gplots (in gregmisc bundle) plotting some posterior
probabilities (using barplot2) of harvest bag limits for discrete data
(x-axis from 0 to 12, data is counts) and I ran into a couple of
questions whose solutions have evaded me.
1) When I create and include the confidence intervals, the lower bound
of the confidence intervals for several of the posterior probabilities
is below zero, and...
2010 Feb 12
1
using mle2 for multinomial model optimization
...cell probability. These successes are given by:
p^(N-x1-x2-...xi)
All the other parameters (i.e. h and S) I know from somewhere else.
Here is what I've tried to do so far for a imaginary data set:
#######################################################
cohort<-c(50,54,50) #imaginary harvest numbers of a cohort harvested
over 3 years
l<-length(cohort)+1 #nr of cell probabilities
h<-c(0.2,0.3,1) #harvest rates for the 3 diferent years
S<-c(0.9,0.8) #survival rates
mfun <- function(d) {
S<-S #survival rate
h<-h #harvest ra...
2010 Jan 27
0
[LLVMdev] some llvm/clang missed optimizations
...Jan 26, 2010 at 5:55 PM, John Regehr <regehr at cs.utah.edu> wrote:
>>> Repetitive code with lots of bitwise operations is compiled by LLVM into
>>> much larger code than the other compilers:
>>>
>>>
>>> http://embed.cs.utah.edu/embarrassing/jan_10/harvest/source/ED/ED37DAF5.shtml
>>>
>>> http://embed.cs.utah.edu/embarrassing/jan_10/harvest/source/1F/1F4003C7.shtml
>>>
>>> Note that this is straight-line code, so LLVM's output will run 4-5
>>> times longer than everyone else's.
>>>
>>...
2018 Dec 01
0
Mailing list address harvested for spamming
Quoting dovecot-e51 at deemzed.uk:
> Not to stir the pot, but I notice my email address has recently been
> harvested from this list for spamming purposes. This email address is
> unique and not used for anything else.
>
> I'd distinguish this from spam sent to the mailing list itself, which is
> obviously different.
>
> Is there anything further that could be done to prevent this?
It...
2010 Nov 22
0
Using AMI to harvest / record HOLD time - Using FreePBX
...is no HOLD in Asterisk but the event Music on Hold is generated when
HOLD is pressed. The complexity is that all of the the calls are handled by
FreePBX so I don't have the channel IDs etc...
Can someone please point out how I can have an AMI session connected at all
times (if that is wise) to harvest these Music on Hold events and to record
the duration of the HOLD? I would be able to place it in the asteriskcdrdb
then for reporting purposes.
Thanks,
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/2010...
2002 Jun 01
0
ADV: Harvest lots of Target Email addresses quickly,/
.../TR></TBODY></TABLE>
<TABLE>
<TBODY>
<TR>
<TD width="5%"></TD>
<TD bgColor=#b8ecff borderColor=#0000ff width="90%"><FONT color=#ff0000
face="Arial Black"
size=6> Want
To Harvest A Lot Of <FONT color=#0000ff>Target </FONT>Email
Addresses In A Very Short Time?</FONT>
<B><FONT face=Arial size=4></FONT><FONT color=#ff00ff face=Arial
size=4><FONT color=#0000ff>Target Email Extractor </FONT>is a...
2002 Apr 27
2
S & R list virus warning
It appears that someone has harvested email addresses from the S-news or
one of the R lists and is sending out viruses. The mail does not come
from the lists, but appears to come from people on these lists. (Closer
examination of the headers indicates that it does not really come from
the person indicated in the "from" fiel...
2011 Jan 20
1
[LLVMdev] [llvm-commits] [llvm] r123754 - in /llvm/trunk: lib/Analysis/InstructionSimplify.cpp test/Transforms/InstSimplify/2010-12-20-Distribute.ll
...e: it may sometimes get this
wrong, especially for large expressions, and say that it simplifies when it
doesn't; on the other hand it should never say that an expression doesn't
simplify when it does - that's would be a bug).
You can get it like this: svn co svn://topo.math.u-psud.fr/harvest
As explained in the README there are two main parts: (1) harvesting expressions
from IR (currently only side-effect free integer expressions are supported), and
(2) looking for simplifications.
You can use it something like this to harvest IR sequences from the optimized
clang output for a file, s...
2008 Aug 17
1
before-after control-impact analysis with R
...the same paper):
The authors conclude that it is better to analyse the data with a
Generalized Linear (Mixed) Model Technique. I tried lme and after
reading Douglas Bates article (May 2005, vol. 5/1) also lmer as follows:
>oil.lme<-lme(density~year*oiled, random=~1|oiled/transect)
or
>harvest.lmer<-lmer(abund~H*BA+BA/year+BA/year:H+site:BA+(1|H/site))
but again no luck. I will get always some error messages or some
interactions missing.
Paper 2
(Keough & Quinn, 2000. Legislative vs. practical protection of an
intertidal shoreline in southeastern Australia. Ecol. Appl. 10: 871...
2010 Jan 20
5
[LLVMdev] updated code size comparison
Hi folks,
I've posted an updated code size comparison between LLVM, GCC, and
others here:
http://embed.cs.utah.edu/embarrassing/
New in this version:
- much larger collection of harvested functions: more than 360,000
- bug fixes and UI improvements
- added the x86 Open64 compiler
John