Displaying 20 results from an estimated 6202 matches for "clones".
Did you mean:
clone
2007 Sep 10
2
Removing an AR class definition, for testing plugins
I''m writing an acts_as_* plugin and am trying to BDD it. Ideally my
specs would look like:
describe ActsAsCloneable, " basic cloning" do
load_example_classes
School.class_eval do
acts_as_cloneable
end
before(:each) do
@old_school = School.create! :name => "Baylake Pines", :city =>
"Virginia Beach", :guid => "abc123"
2012 Jun 21
3
[LLVMdev] Cloning block for newbie
Hello everybody.
I'm quite new to LLVM and I'm encontering problems with cloning basic
blocks. My two basic blocks are in the same function and it doesn't really
matter how the cloned one behave for the moment. Of course, to do so, I
used the cloning.h 's method "CloneBasicBlock" but I have the "Instruction
does not dominate all uses!" error.
I know what it
2009 Feb 22
3
Error in var(x, na.rm = na.rm) : no complete element pairs
Hello all,
I'm trying to calculate the standar desviation and I'm using the function sd(x,na.rm=TRUE) and I have this error:? Error in var(x, na.rm = na.rm) : no complete element pairs . Why happen this?, What can I do to solve it?. x is list of three numbers which I have from a table.
Thanks so much from Spain
Carlos Morales Diego
2012 Jul 11
1
I can't virt-clone into an existing LVM now (ERROR: clone onto existing storage volume is not supported:) - i could in previous lbvirt versions? (deployment scripts no longer work...)
Hi
To deploy KVM vms I use a KVM template + script - which is cloned, then
cloned again and resized - using virt-resize.
i.e
----------------------------------------------------
virt-clone --original debian6template-DONTSTART --name NAME.test -f
/dev/vgpool/NAME.test
virsh vol-create-as vgpool NAME 8G
virt-clone --original NAME.test --name NAME -f /dev/vgpool/NAME
virt-resize --expand
2005 Nov 22
3
[LLVMdev] Cloning BasicBlock
Hi ,
I am trying to clone a BasicBlock. I want both to co-exist and I have introduced
a conditional branch to the original or the cloned BB.
I tried mapping the original instruction and the clone as below :
Instruction *NewInst = II->clone();
if (II->hasName())
NewInst->setName(II->getName());
NewBB->getInstList().push_back(NewInst);
ValueMap[II] =
2008 Jul 11
0
[LLVMdev] Cloning Functions
...t; for each function
> > generate_ir
> > convert_to_llvm_ir
> > optimize_llvm_ir
>
> Yep.
Ok, I've mostly got a mechanism to do what I want:
1. As each function comes in for op/codegen, clone it and save off
the clone and its associated ValueMap (I call these clones "pristine"
functions.
2. After all processing is done, clone the resulting Module (this has all of
the global data and the optimized functions). Save the ValueMap from this
operation.
3. Merge the ValueMaps from the Module clone and all the pristine function
ValueMaps so...
2008 Jul 11
2
[LLVMdev] Cloning Functions
...nerate_ir
>>> convert_to_llvm_ir
>>> optimize_llvm_ir
>>
>> Yep.
>
> Ok, I've mostly got a mechanism to do what I want:
>
> 1. As each function comes in for op/codegen, clone it and save off
> the clone and its associated ValueMap (I call these clones
> "pristine"
> functions.
>
> 2. After all processing is done, clone the resulting Module (this
> has all of
> the global data and the optimized functions). Save the ValueMap
> from this
> operation.
The global data is also optimized at this point. Wi...
2012 Jun 21
0
[LLVMdev] Cloning block for newbie
Please reply-all so that the thread is kept on llvmdev.
The LLVM Programmer's Manual has examples of how to iterate over many
common structures, such as instructions in a basic block[1]. Other
than that, you can check the source code or doxygen[2].
Basically, you loop over the instructions as detailed in the
programmer's manual[1], and loop over the operands using User's
2016 Aug 19
6
OT: Cloning llvm repo over low speed connection != fun
I remember reading all those examples about how a big repo isn't an
issue and when sitting at some ${LOCATION} I have 1010101010Gbps and
it takes like 30 seconds.. Well.. that may be true when I'm at home,
but I'm not.. and this laptop doesn't have llvm sources installed..
So real world feedback of the pita it can be..
/* Side rant - I wish I didn't even need the llvm sources.
2006 Aug 16
4
New Model Object from Existing Model Object
Hey Guys, need a hand again....
Lets say I have an Order... and an Order has Order Lines and Order_Lines
have Items...
I want to create a New Order, which would have New Order Lines with the same
Items...
Is there a fast / easy way to do this, w/o having to create a new order,
loop through all the order lines, and create them associating them with the
Items?
Any help would be great, thanks
--
2012 Jun 22
1
[LLVMdev] Cloning block for newbie
Thank you for your help. It's working now.
I wasn't aware of the usefulness of the User class. The ValueMapper.cpp's
"RemapInstruction()" also helped me a lot to remap phi nodes and metadatas.
Thank you very much.
2012/6/21 Michael Ilseman <michael at lunarg.com>
> Please reply-all so that the thread is kept on llvmdev.
>
> The LLVM Programmer's Manual
2014 Sep 16
3
unattended cloning
Morning,
I have a KVM guest running Win 2012 with MS SQL 2012.
In order to provide a quick method of restoring the service should the live server die, we've decided to clone it to a preserved state.
Ideally, this clone should also be kept up to date and cloning should be done on a regular basis.
Is there any reason not to do unattended cloning? As in, when I leave on a Friday afternoon,
2008 Jul 09
2
[LLVMdev] Cloning Functions
On Wednesday 09 July 2008 13:24, Devang Patel wrote:
> Is it possible to explain intended use of original unoptimized version ?
bugpoint. I want to run it on the IR produced by our frontend. This will
help us generate new LLVM tests we can send upstream. We've fixed
bugs that aren't caught by the upstream tests and it would be nice to capture
the problem and make the test
2011 Apr 26
2
virt-clone: clone not bootable
Hi,
Not sure if this is the right mailing list, but...
I have a Linux VM (CentOS 5.4) VM. ?I cloned it with virt-clone, but the clone isn't bootable. ?When I attempt to boot it says: ?
Booting from hard diskBoot failed: not a bootable diskFATAL: No bootable device
The clone was made with the following command: virt-clone -o centos -n centosclone -f /path/to/new/image.img
I've attempted it
2009 Aug 06
3
[LLVMdev] Call Graph Analysis and function cloning
I need to perform call graph analysis (after all modules are merged) to
find which function calls which, and depending on the attributes that
each function has and what functions call it, I may need to clone it and
modify some of calls to that function to call the cloned function.
Currently we are doing this in few acrobatic moves that span from an
llvm-ld pass (to do call graph analysis) all the
2012 Jan 03
6
turning off udev for eth0
I have set up a kvm host and configured a standard clone
prototype for generating new guests. One persistent (pun
intended) annoyance when cloning is the behaviour of udev
with respect to the virtual network interface.
The prototype is configured with just eth0 having a
dedicated IP addr. When the prototype is cloned udev
creates rules for both eth0 and eth1 in the clone.
Because eth1 does not
2019 Apr 26
2
Libvirt pool cannot see or create rbd clones
...error: Failed to clone vol from coreos_2023
error: failed to iterate RBD snapshot coreos_2023@base: Operation not
permitted
Note that this pool uses the Ceph admin user which makes the Operation
not permitted a tad odd.
Am I missing a configuration option here that would allow for the pool
to use clones? I can't find any information on this in the
documentation so far. And the source code of libvirt looks like it
should support both features.
Versions:
Libvirt Machine: Ubuntu 18.04
Compiled against library: libvirt 4.0.0
Using library: libvirt 4.0.0
Using API: QEMU 4.0.0
Running hypervisor:...
2012 Jan 03
6
turning off udev for eth0
I have set up a kvm host and configured a standard clone
prototype for generating new guests. One persistent (pun
intended) annoyance when cloning is the behaviour of udev
with respect to the virtual network interface.
The prototype is configured with just eth0 having a
dedicated IP addr. When the prototype is cloned udev
creates rules for both eth0 and eth1 in the clone.
Because eth1 does not
2010 Sep 07
0
Semi-automated cloning using powershell scripts
...or Windows domain clients for Samba domain
servers.
ftp://saf.bio.caltech.edu/pub/software/windows/Cloning.zip
They are not very polished, but do what I need, and could serve as a
starting point for other sites. These have been tested only on XP SP3.
These scripts do not use sysprep, so the clones end up with the same
SID, which apparently makes no difference whatsoever. These only handle
pre and post cloning actions, not the actual cloning of the
template machine. The scripts also disable/reenable Sassafras
KeyAccess, just in case any of you also use that. If not, comment out
those parts...
2013 Jul 09
2
[LLVMdev] Error building compiler-rt
Hi,
I get the following error while building compiler-rt:
/slowfs/msret_s1_us03/ajost/src/llvm-3.3.src/projects/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux.cc:315:22: error: no matching function for call to 'clone'
pid_t tracer_pid = clone(TracerThread, tracer_stack.Bottom(),
^~~~~
/usr/include/bits/sched.h:71:12: note: candidate function not