Displaying 20 results from an estimated 645 matches for "dispose".
1999 Jan 05
0
Disposal of the message SAMBA digest 1932 from samba@samba.org failed.
Your message has been blocked from being delivered due to the following..
- false or missing mail adress,
- scanning error,
- unknown domain or domain unreachable,
- unknown mail user,
- mail is not RFC conformant,
- false or missed mail header or boundary.
Please check your message for this, correct possible errors and retry sending.
If the problem persists please contact the
1999 Jan 28
0
Disposal of the message SAMBA digest 1960 from samba@samba.org failed.
Your message has been blocked from being delivered due to the following..
- false or missing mail adress,
- scanning error,
- unknown domain or domain unreachable,
- unknown mail user,
- mail is not RFC conformant,
- false or missed mail header or boundary.
Please check your message for this, correct possible errors and retry sending.
If the problem persists please contact the
2014 Dec 02
3
[LLVMdev] Questions about deallocation responsibilities
I am, from a front end, calling functions like LLVMModuleCreateWithName, found
in Core.h, ultimately calling LLVMWriteBitcodeToFile, found in BitWriter.h.
Do I correctly presume, from the existence of LLVMDisposeModule, that
I am responsible for calling it when I'm done? Will I need to do deeper
disposing myself? I presume at least I will need to free strings I allocated
myself, such as the module name I passed in.
What about, for example, llvm::DIBuilder::DICreateCompileUnit? I haven't
been abl...
2009 Apr 19
2
X won't start
This machine is running CentOS 5.3, fully updated Linux
mavis.localdomain 2.6.18-128.1.6.el5 #1
SMP Wed Apr 1 09:19:18 EDT 2009 i686 athlon i386 GNU/Linux. Video is an
ATI Radeon 9000.
X froze overnight and attempts to restart it fail. I tried an old
kernel (2.6.18-92.1.22.el5)
before realizing that root can start X and a virgin user can start X. I
still can't use my
original user name.
2002 May 11
2
Bug on Mac version of lm()?
Dear Mac users,
Hi, as you might have probably read the thread of
"[R] Rsquared in summary(lm)" on May 10, it seems that Mac version of
lm() seem to be working incorrectly.
I enclose the script to produce the result both for lm() and manual
calculation for a simple regression. Could you run the script and
report with the version of R, so I don't have to go through every
builds
2014 Feb 21
2
Re: [PATCH 2/2] builder: use a disposable GPG keyring for every Sigchecker
On Fri, Feb 21, 2014 at 01:50:30PM +0100, Pino Toscano wrote:
> On Friday 21 February 2014 11:10:54 Richard W.M. Jones wrote:
> > On Thu, Feb 20, 2014 at 11:53:17AM +0100, Pino Toscano wrote:
> > > Create a temporary directory and tell gpg to use it as homedir, so
> > > imported keys do not get into the user's keyring. This also avoid
> > > importing the
2018 Jun 22
2
Server disposal
Can anyone recommend a mailing list or other resource for finding a home
for old server hardware? I've got a growing bone pile of retired Dell and
Supermicro rack servers. I've stripped the drives and memory but hate to
see the other old parts go to waste, like old RAID controllers and other
proprietary parts.
1999 Aug 02
2
Advice interfacing to an imaging library
...r, not the image. We'd like to overload the <-
operator to call the library copy routine.
2) garbage collection. It is now easy to lose track of memory, and this
is likely to be significant because images are usually quite big. There
is a delete function in the library, so it is possible to dispose of
images manually, but an automated method would be nice. One option is to
keep a global list of all pointers returned from C function calls,
generate a list of all image class objects visible in R and compare the
two. Any pointers not on the image class list can be disposed. Does
anyone have any...
2014 Feb 21
2
Re: [PATCH 2/2] builder: use a disposable GPG keyring for every Sigchecker
On Thu, Feb 20, 2014 at 11:53:17AM +0100, Pino Toscano wrote:
> Create a temporary directory and tell gpg to use it as homedir, so
> imported keys do not get into the user's keyring. This also avoid
> importing the default key when a different one is needed to check the
> signature.
>
> The only exception is when a non-default fingerprint is used: in this
> case, that key
2024 Jul 10
0
[ANNOUNCE] xwayland 24.1.1
I am pleased to announce Xwayland 24.1.1, the first bugfix release for
the current stable 24.1 branch of Xwayland.
This release addresses several issues and regressions which have been
reported in Xwayland 24.1.0.
Chenx Dust (1):
xwayland: fix segment fault in `xwl_glamor_gbm_init_main_dev`
Fotios Valasiadis (1):
os: Explicitly include X11/Xmd.h for CARD32 definition to fix
2007 Mar 29
1
Interconnexion d'un serveur Asterisk à des PABX LG ( IP LDK)
bounjour
je dispose de differents commutateurs de LG (IP LDK) sur differents sites.
je voudrais savoir comment je pourrais interconnecter ces differents IP LDK
a un serveur Asterisk via IP ( ceci sous entend que chacun de ces
commutateurs dispose d?j? d'une carte VOIBE).
Mecri d'avance pour l'aide
____...
2008 Feb 25
0
[LLVMdev] new LTO C interface
...> void* to resolve the dependency.
> #include <stddef.h>
>
> extern const char*
> lto_get_error_message();
I've tried not to create thread-unsafe designs in the rest of the
bindings. I return a malloced error message by optional output
parameters and provide a generic dispose function
(LLVMDisposeMessage). Copying CFError's design might be smarter still.
> extern bool
> lto_module_is_object_file_in_memory(const uint8_t* mem, size_t
> length);
>
> extern bool
> lto_module_is_object_file_in_memory_for_target(const uint8_t* mem,
> size_t len...
2014 Jul 21
4
[OT] Leveno HDD caddies
This is very off topic but, I have no idea where else to ask. We obtained
some used Leveno CTO7483 desktop units for experimentation. I had intended to
install CentOS-7 on one of them. As they arrived with a vendor upgraded
Windows 7ProSP1 install without media I decided to pull the disk drive and
install onto a spare drive that I installed.
Those of you with any experience with this model
2008 May 12
0
[LLVMdev] Python bindings available.
...re tests, documentation and APIs will follow.]
Hi Mahadevan,
One more thing I noticed that may be a problem. Automatic finalizers
like this one are very dangerous when cooperating with the C++ object
model:
void dtor_LLVMModuleRef(void *p)
{
LLVMModuleRef m = (LLVMModuleRef)p;
LLVMDisposeModule(m);
}
Consider the case where a function creates and populates a Module,
stuffs it in an ExistingModuleProvider for the JIT, then returns the
ModuleProvider, dropping direct reference to the Module.
(ModuleProvider takes ownership of the Module.) I presume that your
Python object is...
2008 May 12
2
[LLVMdev] Python bindings available.
...m1 = Module.new()
g1 = m1.add_global_variable(ty, "name")
m2 = g1.module
will the LLVMModuleRef pointer returned in the last call be the
same as that of m1? If so probably we can get "g1.module" to
return the original object itself.
> The fix, of course, is providing a dispose routine and requiring the user to
> call it, since you can't know what they've done with the pointer.
It'd be much easier to use it without an explicit destruction call.
I'd prefer to do it only if there's absolutely no other go.
Regards,
-Mahadevan.
2020 Oct 01
2
OrcV1 removal
...k you were seeing?
It did improve the situation significantly, thanks!
There's still a smaller leak, unfortunately. The function comments for
modules say that:
/**
* Create a ThreadSafeModule wrapper around the given LLVM module. This takes
* ownership of the M argument which should not be disposed of or referenced
* after this function returns.
*
* Ownership of the ThreadSafeModule is unique: If it is transferred to the JIT
* (e.g. by LLVMOrcLLJITAddLLVMIRModule), in which case the client is no longer
* responsible for it. If it is not transferred to the JIT then the client
* should c...
2006 Feb 01
2
IE memory fix leak.
By default the prototype.js gives us the function
/* prevent memory leaks in IE */
Event.observe(window, ''unload'', Event.unloadCache, false);
But there is no unload event in out application as the content of the div
keeps changing using the Ajax.Updater function. To handle such a scenario,
we''ve added the following lines of code to prototype.js
/* prevent
2014 Jan 26
2
[LLVMdev] [llmdev] fail to process llvm generated assembly on windows/mingw32
...etAsmVerbosityDefault(true);
targetMachine.setFunctionSections(true);
targetMachine.setDataSections(true);
targetMachine.getOptions().setNoFramePointerElim(true);
output.reset();
targetMachine.emit(module, output,
CodeGenFileType.AssemblyFile);
module.dispose();
context.dispose();
byte[] asm = output.toByteArray();
output.reset();
asm = output.toByteArray();
BufferedOutputStream oOut = new BufferedOutputStream(new
FileOutputStream(oFile));
targetMachine.assemble(asm, clazz.getClassName(), oOut);...
2012 Jun 25
1
using multiple cpu's - scaling in processing power
Hi All
In the past I have worked with parallel processing in R where a function F
is applied to the elements of a list L. The more cpu cores one has, the
faster the process will run. At the time of launching the process for (F,L)
I will have a certain fixed number of cpu's that I can use. I have tested
this approach and it works fine (i.e. package 'multicore' , using 'mapply'
2007 Mar 01
0
7 commits - libswfdec/swfdec_connection.c libswfdec/swfdec_js_connection.c libswfdec/swfdec_js_movie.c libswfdec/swfdec_js_net_stream.c libswfdec/swfdec_js_xml.c libswfdec/swfdec_net_stream.c libswfdec/swfdec_scriptable.c libswfdec/swfdec_scriptable.h
...100
register the classes with the objects for NetConnection, NetStream and XML
diff --git a/libswfdec/swfdec_connection.c b/libswfdec/swfdec_connection.c
index 8e423df..464affb 100644
--- a/libswfdec/swfdec_connection.c
+++ b/libswfdec/swfdec_connection.c
@@ -42,12 +42,16 @@ swfdec_connection_dispose (GObject *obje
G_OBJECT_CLASS (swfdec_connection_parent_class)->dispose (object);
}
+extern const JSClass connection_class;
static void
swfdec_connection_class_init (SwfdecConnectionClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
+ SwfdecScriptableClass *scripta...