similar to: anonymous "on demand" file transfers?

Displaying 20 results from an estimated 300 matches similar to: "anonymous "on demand" file transfers?"

2015 Feb 25
1
Fwd: Unattended guest installation fails
Hi, I am following the below link to install a Fedora19 guest on Fedora19 Host. http://kashyapc.com/2011/08/18/unattended-guest-install-with-a-local-kickstart/ Version : libvirtd (libvirt) 1.0.5.1, QEMU emulator version 1.4.2, Copyright (c) 2003-2008 Fabrice Bellard I have the iso which I loop mounted and created a http repo using python module "python -m SimpleHTTPServer". This
2007 Mar 07
2
Doing something ''on demand''
What techniques are people using to do particular tasks once in a great while? For example, usually you don''t want to automatically upgrade the kernel until it''s fully tested but, of course one day you will. How do you work through Puppet to perform this activity on an on-demand basis instead of a periodic job. Are you using state files like "if file X exists do Y"
2010 Jan 02
1
Recalculate quota usage on demand
I would a method for Dovecot to recalculate the quota usage and rewrite it to the quota DB (Called on demand by a non-Dovecot POP3 daemon) I don't want the line deleted in the DB as this would only recalculate next time the Dovecot LDA or IMAP handles a message, and I want to keep the data availability contiguous. Can this be done?
2004 Feb 12
1
Almost Ideal Demand System
Hi there fellow R users, Has anyone got an R example of applying an Ideal demand system, possibly using the library systemfit?? Thanks Wayne Dr Wayne R. Jones Senior Statistician / Research Analyst KSS Limited St James's Buildings 79 Oxford Street Manchester M1 6SS Tel: +44(0)161 609 4084 Mob: +44(0)7810 523 713 KSS Ltd Seventh Floor St James's Buildings 79 Oxford Street
2012 Mar 07
1
Demographic Variables in AIDS (Demand System)
Hi all, I am using aidsEst( ) in "micEconAids" package to estimate Demand system. But I would like to add more demographic variables in demand system. How can I add those information? for example: mydata<-data.frame(p1,p2,p3,p4, s1,s2,s3,s4, totalexp,
2010 Mar 04
0
how to create a Allocate On Demand disk image for a vm
Hi all, Can anyone teach me how to create a Allocate On Demand disk image for a vm. or give me a link that i can refer to Thanks a lot, Chi -- View this message in context: http://old.nabble.com/how-to-create-a-Allocate-On-Demand-disk-image-for-a-vm-tp27776450p27776450.html Sent from the Xen - User mailing list archive at Nabble.com. _______________________________________________ Xen-users
2008 Apr 22
0
[PATCH] blktap: Automatically start tapdisk-ioemu on demand
When a domain wants to use a tap:ioemu disk but has no device model, start a tapdisk-ioemu instance as provider. Also, move the creation and removal of communication pipes to xend so that qemu-dm doesn''t need the unwanted SIGHUP handler anymore. Signed-off-by: Kevin Wolf <kwolf@suse.de> _______________________________________________ Xen-devel mailing list
2013 Apr 08
0
[PATCH 0/2] virtio-serial: set up vqs on demand
On (Thu) 12 Jan 2012 [09:20:05], zanghongyong at huawei.com wrote: > From: Hongyong Zang <zanghongyong at huawei.com> > > Virtio-serial set up (max_ports+1)*2 vqs when device probes, but may not all > io_ports are used. > These patches create vqs of port0 and control port when probing the device, then > create io-vqs when called add_port(). Hi, Can you resurrect this
2013 Apr 08
0
[PATCH 0/2] virtio-serial: set up vqs on demand
On (Thu) 12 Jan 2012 [09:20:05], zanghongyong at huawei.com wrote: > From: Hongyong Zang <zanghongyong at huawei.com> > > Virtio-serial set up (max_ports+1)*2 vqs when device probes, but may not all > io_ports are used. > These patches create vqs of port0 and control port when probing the device, then > create io-vqs when called add_port(). Hi, Can you resurrect this
2012 Dec 07
1
Support for on-demand USB pass through
Hi, I'm trying to use USB pass through with devices that are not present at the VM startup. However, when starting the machine, libvirt complains that the USB device doesn't exist. I was following the guide at [1], but this doesn't seem to work on Debian Wheezy. Any hints how to achieve that? Thanks, Felicitus [1]
2010 Apr 17
2
[LLVMdev] Parsing (and compiling) on demand.
Hi! I'm trying to develop JIT compiler using LLVM as its backend. I know LLVM itself supports JIT-compiling, but I need to generate IR first. I don't want to generate IR before function is actually needed. How can I achieve this? If it matters, I have prototypes for all functions I'm going to use. Best regards, Milovanov Victor.
2010 Apr 17
0
[LLVMdev] Parsing (and compiling) on demand.
lost wrote: > Hi! > > I'm trying to develop JIT compiler using LLVM as its backend. I know > LLVM itself supports JIT-compiling, but I need to generate IR first. > I don't want to generate IR before function is actually needed. How > can I achieve this? > If it matters, I have prototypes for all functions I'm going to use. See
2010 Apr 17
2
[LLVMdev] Parsing (and compiling) on demand.
Ok than, but how to insert a call to an undefined function? > See ExecutionEngine::InstallLazyFunctionCreator(). > http://llvm.org/doxygen/classllvm_1_1ExecutionEngine.html#6a126d6cd1fa07a4331179597de0c46a > > Nick >
2010 Apr 17
0
[LLVMdev] Parsing (and compiling) on demand.
lost wrote: > Ok than, but how to insert a call to an undefined function? You need to have the function declaration and insert a call to that. Once your LazyFunctionCreator is called, you fill in the body and call JIT->getPointerToFunction() on it and return that result. I haven't actually tried this, but it seems to be the only way to use this API, so I presume someone else has.
2010 Apr 17
0
[LLVMdev] Parsing (and compiling) on demand.
So you mean that is not the way. But what is InstallLazyFunctionCreator for? 2010/4/17 Kenneth Uildriks <kennethuil at gmail.com>: > On Sat, Apr 17, 2010 at 2:15 PM, Nick Lewycky <nicholas at mxc.ca> wrote: >> lost wrote: >>> Ok than, but how to insert a call to an undefined function? >> >> You need to have the function declaration and insert a call to
2010 Apr 17
2
[LLVMdev] Parsing (and compiling) on demand.
lost wrote: > So you mean that is not the way. But what is InstallLazyFunctionCreator for? You can use it to return a function pointer when asked for a function by name. It can replace dlsym() style lookups. I would've expected that given its name it could be used to lazily create functions too, but apparently not. Nick > > 2010/4/17 Kenneth Uildriks<kennethuil at
2010 Apr 17
0
[LLVMdev] Parsing (and compiling) on demand.
Just to do my own try. How can I use it to replace dlsym style lookups? Any example? > You can use it to return a function pointer when asked for a function by > name. It can replace dlsym() style lookups. > > I would've expected that given its name it could be used to lazily create > functions too, but apparently not. > > Nick
2004 Aug 02
0
Fax on demand
I know you're looking to do this with asterisk, however, if you have trouble and want an outsourced solution, try www.openfax.com. You can do the IVR with Asterisk and then write a script that calls Openfax and they send out the fax for you. krw -----Original Message----- From: asterisk-users-admin@lists.digium.com [mailto:asterisk-users-admin@lists.digium.com] On Behalf Of Isamar Maia
2015 Feb 02
1
IAX2 trunk with on demand Internet link
Hi, I'm connecting 2 Asterisk servers with an IAX2 trunk. Trunk works fine in testing, no problems there but the Internet at server-A is an "on-demand" system that is based on the amount of http/https traffic going through it (or if the link is brought up manually/via scripting interface). As such there will be times that the link is down....workflow-wise this is not an issue (trunk
2015 May 04
0
Isolating a subnet on demand
On Mon, May 04, 2015 at 08:50:36PM +0200, Anne-Gwenn Kettunen wrote: > Hi! I'm setting up a VPN with friends of mine, and we are currently > considering the possibility to opening the subnet to more people. > Considering that one day or another we may have to isolate a subnet (because > of bad behaviour, or because it has been compromised), which solution(s) > would you