Displaying 20 results from an estimated 10000 matches similar to: "ANNOUNCE: WIST - Web Interface for SIP Trace"
2012 Mar 22
2
Randomly select elements based on criteria
Hi,
I want to randomly pick 2 fish born the same day but I need those
individuals to be from different families. My table includes 1787 fish
distributed in 948 families. An example of a subset of fish born in one
specific day would look like:
>fish
fam born spawn
25 46 43
25 46 56
26 46 50
43 46 43
131 46 43
133 46 64
136 46 43
136 46 42
136 46 50
136 46 85
137 46 64
142 46 85
144 46 56
2010 Jul 26
1
form date helper with text year
I have a date where the year range is more then I want to define in a
select_date scaffold generated year range.
My idea was to have the year entered as a text field and the month and
day using something like:
<%= select_month @person.born,:prefix => :person ,:field_name =>
"born(2i)" %>
<%= select_day @person.born,:prefix => :person , :field_name =>
2004 Sep 10
0
FLAC 1.0.5 beta 2 released
Hi all,
Born of the feedback from beta1, I have uploaded a source tarball
of beta2 to sourceforge for testing. With the exception of new
functionality in the Winamp2 plugin, there have been only bug
fixes since beta1. This should be very close to the actual
release.
Download here:
http://prdownloads.sourceforge.net/flac/flac-1.0.5_beta2.tar.gz?download
The Winamp2 plugin now has ReplayGain
2006 Feb 02
0
[Fwd: Re: Asterisk for Call Center (missing reference)]
John Todd,
Can you please answer that question or just give me your feedback about it?
I'll be very thankfull to hear something from you!
regards,
Telles
-------------- next part --------------
An embedded message was scrubbed...
From: "Rodrigo P. Telles" <telles-listas@devel.it>
Subject: Re: [Asterisk-Users] Asterisk for Call Center (missing reference)
Date: Mon, 23 Jan
2011 Jan 25
1
deSolve: Problem solving ODE including modulo-operator
I have a problem integrating the 'standard map' (
http://en.wikipedia.org/wiki/Standard_map
http://en.wikipedia.org/wiki/Standard_map ) with deSolve:
By using the modulo-operator '%%' with 2*pi in the ODEs (standardmap1), the
resulting values of P and Theta, should not be greater than 2pi. Because
this was not the case, i was thinking that the function 'ode' has some
2007 Oct 26
1
[Fwd: Re: subsetting]
Sorry that I was unclear. For an individual to qualify for my analysis I
want both of the following two criteria to be fulfilled:
First, I want to select measurement taken at a certain age: for the
focal individual the year of measurement (year) should be the same as
year.hatch
Second, I want the focal individual to be born by a mother that
reproduces for the first time.
So the /parents /of
2010 Apr 12
0
ocfs2/o2cb problem with openais/pacemaker
hi!
i'm on debian lenny and trying to run ocfs2 on a dual primary
drbd device. the drbd device is already set up as msDRBD0.
to get dlm_controld.pcmk i installed it from source (from
cluster-suite-3.0.10)
now i configured a resource "resDLM" with 2 clones:
primitive resDLM ocf:pacemaker:controld op monitor interval="120s"
clone cloneDLM resDLM meta
2017 Jun 26
2
Some questions about software pipeline in LLVM 4.0.0
Hi Ehsan,
In some cases modulo scheduling will insert copy instruction that end up as
real copies in the final code. It unavoidable in some cases. For example,
let's say a instruction defining a value is scheduled in the first
iteration, but one of its uses is scheduled two iterations later. In this
case, the kernel needs to create a copy because there will be two values
live in the
2014 Nov 10
2
[LLVMdev] About inlining the modulo function in ARM architecture
Hi all,
Sorry for bothering those not interested. I found that ARM backend will
insert a modulo function
(like __modsi3) instead of the modulo instruction. I wonder how we can
inline the modulo function
into the program. Is there any OPTION we can use in the opt or llc?
Thanks,
Ray
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2018 Sep 11
0
Modification-proposal for %% (modulo) when supplied with double
On 11/09/2018 11:23 AM, Emil Bode wrote:
> Hi all,
>
>
>
> Could we modify the "%%" (modulo)-operator to include some tolerance for rounding-errors when supplied with doubles?
>
> It's not much work (patch supplied on the bottom), and I don't think it would break anything, only if you were really interested in analysing rounding differences.
>
>
2018 Jul 02
2
Rotates, once again
On 7/2/2018 3:16 PM, Sanjay Patel wrote:
> I also agree that the per-element rotate for vectors is what we want for
> this intrinsic.
>
> So I have this so far:
>
> declare i32 @llvm.catshift.i32(i32 %a, i32 %b, i32 %shift_amount)
> declare <2 x i32> @llvm.catshift.v2i32(<2 x i32> %a, <2 x i32> %b, <2 x i32> %shift_amount)
>
> For
2014 Nov 10
3
[LLVMdev] About inlining the modulo function in ARM architecture
Hi Tim,
Thanks for your reply.
On Mon, Nov 10, 2014 at 1:26 PM, Tim Northover <t.p.northover at gmail.com>
wrote:
> Hi Ray,
>
> On 10 November 2014 10:13, Alex S <alexmountain13 at gmail.com> wrote:
> > Sorry for bothering those not interested. I found that ARM backend will
> > insert a modulo function
> > (like __modsi3) instead of the modulo instruction.
2010 Aug 20
1
ocfs2 hang writing until reboot the cluster-dlm: set_fs_notified: set_fs_notified no nodeid 1812048064#012
Hello,
I hope this mailing list is correct.
I've a cluster pacemaker with a clone resource ocfs2 with
ocfs2-tools-1.4.1-25.6.x86_64
ocfs2-tools-o2cb-1.4.1-25.6.x86_64
on Opensuse 11.2
After some network problem on my switch I receive on one of 4 nodes of
my cluster the following messages
Aug 18 13:12:28 nodo1 openais[8462]: [TOTEM] The token was lost in the
OPERATIONAL state.
Aug 18 13:12:28
2010 Oct 09
0
[LLVMdev] [LLVMDev] Does LLVM have a random number generator?
I am plugging this into my code. If someone wants to take it out and
add it to the llvm library, it's a simple Linear Congruential
Generator, but here it is:
typedef struct random_number_gen {
unsigned a, c, seed, m;
random_number_gen( unsigned seed, unsigned modulo ) :
seed(seed), m(modulo) {
unsigned primes[] = { 2, 3, 5, 7, 11, 13, 17, 19, 23, 29 };
2002 Nov 11
1
Printer driver downloads...?
I've been googling around for quite some time, and haven't managed to find
anything useful. Is there some moderately up-to-date information on how
to set up the automatic print-driver download in Samba 2.2.x? I know about
the "old way" of doing things, but it doesn't seem to fly with Win2K drivers.
Any and all help, and pointers to FD so I can RTFD (again, haven't had
2004 Aug 30
2
suggestions motivated by quest for remainders
Some time ago I tried to find out how to compute remainders in R.
I now know that it is done with %%, which is documented in help('+'),
but before someone told me that I tried:
help('remainder'), help.search('remainder'), apropos('remainder')
help('modulo'), help.search('modulo'), and apropos('modulo')
all of which yielded nothing.
I then
2013 Nov 14
1
Re: make_random_password(): avoid modulo bias, and do not deplete system entropy (#9)
On Thu, Nov 14, 2013 at 01:48:17AM -0800, edwintorok wrote:
> Following the link to builder.ml from your blogpost I noticed the make_random_password () function, and I have some suggestions, well nitpicks really. See the 2 commits from this pull request.
>
> 1. Using Ocaml's buffered I/O means that one make_random_password() call reads 64k bytes from /dev/urandom which drops the
2002 Nov 19
1
Driver download problem (still)...
I've gotten driver-downloads to work from WinNT/2K clients, but I still
can't seem to figure out how to get things to work with Win9x clients.
Here's a copy of my smb.conf file:
***********
[global]
printing = lprng
printcap name = /etc/printcap
log level = 1
load printers = no
guest account = nobody
security = domain
workgroup =
2004 Aug 27
2
Zap & ANSWER the Call
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi,
I'm using a TDM400 with one FXS and one FXO module (developer kit) and
I've been testing termination from SIP phones to PSTN and it works fine, but
asterisk accounting is doing something strange (for me).
Scenario:
1 - extension 1009 (SIP phone - BT101)
2 - Zap/4-1 (TDM400 FXO module)
extensions.conf:
[dialout]
exten =>
2007 Feb 16
0
11 commits - libswfdec/swfdec_font.c libswfdec/swfdec_font.h libswfdec/swfdec_js_movie.c libswfdec/swfdec_script.c libswfdec/swfdec_script.h test/.gitignore test/trace
libswfdec/swfdec_font.c | 4
libswfdec/swfdec_font.h | 2
libswfdec/swfdec_js_movie.c | 8 -
libswfdec/swfdec_script.c | 225 +++++++++++++++++++++++++++++++++++++++----
libswfdec/swfdec_script.h | 14 ++
test/.gitignore | 1
test/trace/Makefile.am | 6 +
test/trace/height4.swf |binary
test/trace/height4.swf.trace | 5