Displaying 20 results from an estimated 57 matches for "contructs".
Did you mean:
constructs
2005 Aug 24
1
SV: Fax to email using mime-contruct
I also want to try that asterisk guide. But i'm not sure if i understood it correctly.
What exactly do i need to do? Do i need to compile Asterisk with the spanDSP plugin or just configure extensions.conf? The URL to spanDSP in the guide wasn't working.
I also use a traditional internet line to recieve calls and hopefully i will get Fax working soon.
This is so confusing.
Thanks,
Arne
2005 Aug 23
0
Fax to email using mime-contruct
I have followed and succesfully receive incoming faxes to email with
Scott Laird's faxing with asterisk guide.
http://scottstuff.net/blog/articles/2004/03/28/faxing-with-asterisk
But, I'm receiving the email from root@mydomain.com.
I would prefer it to receive from asteriskfax@mydomain.com.
How do I achive this? Please advice. I'm using postfix.
Thanks.
2006 Apr 18
3
seq() function accuracy inacceptable (PR#8779)
Full_Name: Johannes Prix
Version: 2.1.1
OS: WinXP, SuSE Linux
Submission from: (NULL) (137.208.41.195)
The seq-command produces unnescessary inaccurate results, which can be extremely
annoying. I absolutely do not see the nescessity of numerical garbage to appear
in the following simple case. E.g. try this:
> seq ( 61.55 , 62.00 , by=0.01 ) - round ( seq ( 61.55 , 62.00 , by=0.01 ) ,
2010 Oct 06
2
[LLVMdev] Segmentation Fault of BasicCallGraph?
Hi,
I did a little experiment, basically to extract implemented CallGraph
to be a "new" pass with different registered name, and run the "new"
pass, but the result always gives out Segmentation Fault... I am
probably missing
sth?
Implemented another new class,
class BasicCallGraph2 : public ModulePass, public CallGraph {
.....
...
}
The inside code is exact same as
2012 Oct 23
3
[LLVMdev] precondition suggestion to LLVM
Thank you, it was what I really was searching for :)
However, I don't know if I well understood. I've find this link in the second link which seemed what i was looking for: http://nondot.org/sabre/LLVMNotes/BuiltinUnreachable.txt .If I put around the code block (inside my function with precondition (x>0 && y>0)) a contruct like that that use __builtin_unreachable:
int foo(int
2008 Dec 20
2
Setup ReceiveFax(), fax2mail, mime-construct - but now Sendmail :(
Using 1.6 on Fedora Core 9 I'm trying to receive faxes. I've got this far:
[incoming-fax]
exten =>
s,1,Set(FAXFILE=/var/spool/asterisk/fax/${STRFTIME(${EPOCH},,%Y%m%d%H%M)}-0${CALLERIDNUM})
exten => s,2,ReceiveFAX(${FAXFILE}.tif)
exten => s,3,Hangup()
exten=>h,1,System(/usr/local/bin/fax2mail --cid-number "0${CALLERIDNUM}"
--cid-name "home fax"
2009 Aug 24
1
[LLVMdev] question about LLVMContext
Hi devs:
I'm trying to do something quite simple, but it seems I need to provide an
LLVMContext& to do it. I'm not sure what the 'proper' LLVMContext would be
in my situation.
I'm writing an analysis that is a FunctionPass. At some point in the pass,
I am given a Value * representing an N-bit integer. My goal is to contruct
two ConstantInt instances, for comparison
2006 May 08
1
file_column - url_for_file_column issue.
Hi,
url_for_file_column @variable, ''name'', takes an instance variable. My
question is, what if I don''t want to have to retrieve the instance variable
every single time but I have the image id, along with its name with me.
Could I contruct that object in a view and pass it to url_for_file_column:
<% @picture = Picture.new %>
@picture.id = ...
2006 Apr 28
1
Beginner Question - <% ... %>
Regarding: <% (some code) %>
I have some suspicions/general ideas about what this contruct is
supposed to do, but can someone
a) tell me what it''s proper name is and
b) explain or point me to a resource which defines it in a formal way?
Thanks in advance,
Bihal
--
Posted via http://www.ruby-forum.com/.
2010 Feb 02
1
EdHeron/DomU_LVM_NTFS_resize
Please, if anybody has time, take a look at
http://wiki.centos.org/EdHeron/DomU_LVM_NTFS_resize
Contructive criticism welcome.
--------------------
Ed Heron
2006 Apr 20
1
Mutually Orthogonal Latin Squares
Hi all,
The package crossdes could contruct a complete sets of mutually orthogonal latin squares.
The construction works for prime powers only.
I hope to know whether there is a way to construct a mutually orthogonal Lation square for
10 or other numbers that could not be prime powers.
Thanks for any suggestions.
Best wishes,
Jinsong Zhao
2008 Jul 01
1
extracting elements from a list in vectorized form
Hi;
It seems to me that has probably been asked in the past. But I cannot find
the track.
I usually need to extract elements from a list and contruct vector from
them; e.g., to create a table. Perhaps there is a way to directly extract
them without looping?
Simple example:
> S.lst
$sublist.1
$sublist.1$age
[1] 24.58719
$sublist.1$weight
[1] 60.82861
$sublist.2
$sublist.2$age
[1] 32.39551
2009 Jul 18
1
Building a big.matrix using foreach
Hi there!
I have become a big fan of the 'foreach' package allowing me to do a
lot of stuff in parallel. For example, evaluating the function f on
all elements in a vector x is easily accomplished:
foreach(i=1:length(x),.combine=c) %dopar% f(x[i])
Here the .combine=c option tells foreach to combine output using the
c()-function. That is, to return it as a vector.
Today I discovered the
2004 Jan 22
1
Bug in termplot?
Hi,
Is this a bug in termplot, or (once again) do I just not understand what R
is really doing?
I am using termplot to contruct partial residual plots,
1. For all terms at once
2. One term at a time
but I get different results from these two methods. To give a concrete
example, I would have thought the top and bottom rows of the plot
constructed with the following code would be identical.
2010 Oct 07
0
[LLVMdev] Segmentation Fault of BasicCallGraph?
Shuying Liang wrote:
> Hi,
>
> I did a little experiment, basically to extract implemented CallGraph
> to be a "new" pass with different registered name, and run the "new"
> pass, but the result always gives out Segmentation Fault... I am
> probably missing
> sth?
>
> Implemented another new class,
> class BasicCallGraph2 : public ModulePass,
2012 Oct 23
0
[LLVMdev] precondition suggestion to LLVM
On Mon, Oct 22, 2012 at 9:33 PM, Niko Zarzani <koni10 at hotmail.it> wrote:
> Thank you, it was what I really was searching for :)
>
> However, I don't know if I well understood. I've find this link in the
> second link which seemed what i was looking for:
> http://nondot.org/sabre/LLVMNotes/BuiltinUnreachable.txt .
> If I put around the code block (inside my
2004 Dec 13
3
Percentages in contingency tables *warning trivial question*
I hesitate to post this question in the light of recent threads, indeed
I have hesitated for several weeks, however I have come to a full stop
and really need some help if I am going to progress. I am a new user of
R for medical statistics. I have attempted to read all the relevant
documents, but would welcome any suggestions as to what I have missed.
I am trying to contruct "table 1"
2011 Feb 28
0
[LLVMdev] About Interprocedural CFG
Hi, all:
I am considering contructing Interprocedural Control Flow Graph(ICFG) in
LLVM, but really have no idea about how much work should I do?
Is there someone have done this work before? Expecting your suggestions.
Thanks.
--William
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2012 Oct 23
0
[LLVMdev] precondition suggestion to LLVM
You may want to check this out:
http://lists.cs.uiuc.edu/pipermail/llvmdev/2012-October/053924.html
and also
http://llvm.org/PR810
- xi
On 10/22/12 6:05 PM, Niko Zarzani wrote:
> Hi all,
> Is there any way to tell LLVM some additional information about the
> variables in the code in order to make better optimization?
> For example, if my function has a certain precondition (such
2008 Nov 06
0
Inference and confidence interval for a restricted cubic spline function in a hurdle model
Dear list,
I'm currently analyzing some count data using a hurdle model. I've used
the rcspline.eval function in the Hmisc-library to contruct the spline
terms for the regression model, and what I want in the end is the ability
to compute coefficients and confidence intervals for different changes in
the smooth function as well as plotting the smooth function along with the