Displaying 17 results from an estimated 17 matches for "newlocation".
2009 Jul 15
0
Fwd: DLLs
Thanks for your help with this problem about dynamic linked libraries.
I thought I had it solved, but apparently not.
Below is a small piece of Pascal code that I compile into a library.
When I load the library using dyn.load R becomes very unstable.
The Mac GUI crashes in all kinds of situations --even moving a window
can sometimes crash it.
Running from the command line (I thought the
2009 Jun 29
4
[LLVMdev] Limitations of Alias Analysis?
...tructure", I
evaluated the AA performance by using the paramenters '-basicaa -ds-aa
-anders-aa'. The source code 'test.c' is listed as follow:
//------------=== Source code ===------------//
#include<stdlib.h>
typedef struct
{
int x;
int y;
} Location;
Location* getNewLocation(int x, int y)
{
Location* newLoc = (Location *)malloc(sizeof(Location));
newLoc->x = x;
newLoc->y = y;
return newLoc;
}
Location* getDifference(Location *a, Location *b)
{
Location* newLoc = (Location *)malloc(sizeof(Location));
newLoc->x = a->x - b->x;
newLoc->y = a-...
2020 Mar 28
0
[klibc:update-dash] dash: expand: Fix double-decrement in argstr
Commit-ID: 4bfffb1572c9d1b77538b5a3e92c27f91bd2ee99
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=4bfffb1572c9d1b77538b5a3e92c27f91bd2ee99
Author: Herbert Xu <herbert at gondor.apana.org.au>
AuthorDate: Mon, 25 Feb 2019 14:00:31 +0800
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Sat, 28 Mar 2020 21:42:55 +0000
[klibc] dash: expand: Fix
2006 Nov 03
4
some simple newbie help with dialplan needed...
Hi all!
I need a simple plan for the following:
*answer call
*wait for 4 digit extension
*send call to 4-digit extension entered.
I tried the following, but that doesn't work...
exten => 998,1,Answer()
exten => 998,2,Background(agent-newlocation)
exten => 998,n,WaitExten(20)
exten => 998,n,Dial(SIP/${EXTEN}@${SERADDRESS},60,tr)
WaitExten obviously does not fill EXTEN with its value...
Anyone any suggestions?
Regards,
Evert
2020 Mar 28
0
[klibc:update-dash] dash: expand: Do not reprocess data when expanding words
Commit-ID: 527bee886ced0d22428417d60a638521e435bb96
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=527bee886ced0d22428417d60a638521e435bb96
Author: Herbert Xu <herbert at gondor.apana.org.au>
AuthorDate: Wed, 30 May 2018 02:06:03 +0800
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Sat, 28 Mar 2020 21:42:55 +0000
[klibc] dash: expand: Do not
2009 Nov 05
0
[LLVMdev] Debug Information for LLVM 2.6 and TOT
Hi John,
On Thu, Nov 5, 2009 at 8:43 AM, John Criswell <criswell at uiuc.edu> wrote:
> Does the debug facilities in LLVM TOT, at present, maintain information
> better than LLVM 2.6 (i.e., if a front-end puts the debug information in,
> will the optimizations not take it out)? Does the information that the
> llvm-gcc front-end adds comparable to what llvm-gcc in LLVM 2.6 does?
2007 Jun 21
2
Use of ChanSpy
How can I use the Asterisk command ChanSpy If I need to spy on a call?
I already added the function to the extensions.conf, and I get the beeps,
but then what do I do??? I don't understand the use of this function.
Best Regards
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2009 Nov 05
2
[LLVMdev] Debug Information for LLVM 2.6 and TOT
Devang Patel wrote:
> Hi John,
>
> On Wed, Nov 4, 2009 at 12:04 PM, John Criswell <criswell at uiuc.edu> wrote:
>
>> Dear All,
>>
>> 1) I recall reading somewhere that a few optimizations in LLVM 2.6 strip
>> away debug information when such information interferes with
>> optimization. Is this correct,
>>
>
> Yes.
>
>
2010 Feb 11
3
Creating a new Access database with R
...#39;ve looked at the RODBC.pdf on CRAN, searched the mailing-lists, and
looked at test.R file in the package. But probably I've overlooked
something.
It is of course possible to keep a clean new mdb-file somewhere and then
copy it to the required directory with:
shell("copy EmptyDB.mdb NewLocation.mdb")
But that isn't very elegant...
Thanks in advance,
Uri Shimron
_________________________________________________________________
USB$B%a%b%jBe$o$j$K$*;H$$$/$@$5$$!#L5NA$G;H$($k(B25GB$B!#(B
[[alternative HTML version deleted]]
2011 Feb 21
2
[LLVMdev] A working garbage collector - finally :)
...der' is the head of a statically
// allocated object instance, in which case we need not do
// anything since it will be traced as a static root.
if (header.gcstate != 0) {
if (header.gcstate & uint(GCFlags.RELOCATED)) != 0 {
ptrAddr[0] = header.newLocation;
} else {
let size = header.gcstate & uint(~3);
let newAddr:Address[ubyte] = toSpace.alloc(size);
Memory.arrayCopy(newAddr, addr, size);
header.newLocation = ptrAddr[0] = Memory.bitCast(newAddr);
header.gcstate = uint(GCFlags...
2006 Sep 21
0
Creating a new Access database with R
...I've looked at the RODBC.pdf on CRAN, searched the mailing-lists, and
looked at test.R file in the package. But probably I've overlooked
something.
It is of course possible to keep a clean new mdb-file somewhere and then
copy it to the required directory with:
shell("copy EmptyDB.mdb NewLocation.mdb")
But that isn't very elegant...
Thanks in advance,
Uri Shimron
***************************************************************************
This email and any files transmitted with it are confidentia...{{dropped}}
2008 Feb 21
1
Using Really Simple History on Rails
...rom the Rails app, inserting that into the history with
dhtmlHistory.add(''PageName'', xhr_response_data) and then eval that
data when my listener gets called with the back and forward buttons.
I can make this work manually by doing something like this:
var pageListener = function(newLocation, historyData) {
eval(historyData);
}
and then:
dhtmlHistory.add(''home'', ''alert("We Are Home")'');
Then hit the back and forward buttons and I get an alert box.
So, how can I capture the XHR response from the rails app and whack it
in there?
I am l...
2014 Apr 11
1
VIRT SIG Meeting Minutes [11/04]
...eded.
* ACTION: KB, provide changes suggested by Centos board by Friday (or
Monday)
* ACTION: LK, after changes are received kick off Xen Project AB board
approvals
=== Infrastructure ===
==== Wiki ====
* Wiki access : done
==== Repositories ====
Migrate Xen4CentOS git repositories to newlocation
* KB stated that there is a dependency on build system
* We can either wait for the new build system or use the one we have
(with migrated repos).
* Present system: each package is within its own named git
repository. Each git repository has named branches.
* Workflow: anyone can clone t...
2005 Feb 24
0
Queue Questions
...01"
*********************************************************>
Executing AgentCallbackLogin("SIP/2204-2d5c", "") in new stack
-- Playing 'agent-user' (language 'en')
-- Playing 'agent-pass' (language 'en')
-- Playing 'agent-newlocation' (language 'en')
-- Setting global variable 'AGENTBYCALLERID_"Ron" <2204>' to '204'
<************ Note Asterisk tries to send the call to the agent before
the agent has a chance to hangup from logging into the system
*******************>
--...
2006 Feb 13
1
Asterisk: Agent logs into queue, and there are calls in the queue, but calls don't go to agent
...'
-- Starting simple switch on 'Zap/1-1'
-- Executing AgentCallbackLogin("Zap/1-1", "||@extensions") in new stack
-- Playing 'agent-user' (language 'en')
-- Playing 'agent-pass' (language 'en')
-- Playing 'agent-newlocation' (language 'en')
-- Playing 'agent-loginok' (language 'en')
== Callback Agent '224' logged in on 100@extensions
-- Playing 'vm-goodbye' (language 'en')
== Spawn extension (internal, #1, 1) exited non-zero on 'Zap/1-1'
-- Hu...
2014 Mar 07
3
[LLVMdev] [RFC] Add second "failure" AtomicOrdering to cmpxchg instruction
Hi all,
The C++11 (& C11) compare_exchange functions with explicit memory
order allow you to specify two sets of semantics, one for when the
exchange actually happens and one for when it fails. Unfortunately, at
the moment the LLVM IR "cmpxchg" instruction only has one ordering,
which means we get sub-optimal codegen.
This probably affects all architectures which use
2004 Sep 17
8
English vs American voice files
My wife's got an appropriate Southern England (Wimbledon) accent and I'm
sure she would try her hand. Does anyone have a comprehensive list of the
words that need to be said? Matt, do you have them if your wife's done a
set for French users?
Mark, if you have the kit maybe you could chop up the file? I write a
utility to chop up and compress the wave file based on some of the C