Displaying 20 results from an estimated 41 matches for "koan".
Did you mean:
joan
2011 May 05
0
Ruby Koans an amazing platform for teaching programming. Would this work with R?
For those not familiar Ruby Koans is a fantastic platform for teaching many
of the basics of programming in the Ruby language. It uses unit tests
written for methods each of which describe a component of the Ruby
programming language.
http://rubykoans.com/
The koans platform has become popular enough that it has been translated...
2011 May 13
7
[LLVMdev] [Patch] Let MC/ELF generate Thumb/Thumb-2 are properly
...;ELF for the ARM Architecture" 4.7.1.2)
2. fixes target address tBL and tBLX
3. sets relocation type of tBL/tBLX to R_ARM_THM_CALL
(4.7.1.6)
4. adds some attributes to attribute section when cpu is "xscale"
(this is what used in Android NDK, when architecture is ARMv5)
--
// koan-sin tan
-------------- next part --------------
A non-text attachment was scrubbed...
Name: llvm-thumb-elf-hack.diff3
Type: application/octet-stream
Size: 6025 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110513/81a8e782/attachment.obj>
2011 May 13
0
[LLVMdev] [Patch] Let MC/ELF generate Thumb/Thumb-2 are properly
On 13 May 2011 06:42, Koan-Sin Tan <koansin.tan at gmail.com> wrote:
> With that attached patch, we can compile and run some (not all) Android
> NDK samples without problem.
Hi Koan,
Have you tried to run Intel and other platform tests?
I feel uncomfortable with so many changes in generic MC/ELF regarding
spec...
2010 Nov 03
0
[XCP] Migration from cobbler/koan to XCP Templates
Hi All,
Does anybody have any tips or suggestions for migrating from a CentOS
+ Xen setup and using cobbler/koan [1] for VM provisioning to an XCP
setup using XCP templates (or similar) to provision VMs?
cobbler/koan make use of kickstart, which It looks like XCP can do as well.
Mainly, I am wondering if converting the cobbler profiles could be
done automatically and reliably?
Any comments, suggestions, ti...
2012 Sep 23
1
ruby koans don't understand the principle sandwhich code
hello,
Im still working on ruby koans.
Now I have to do some sandwhich code.
The exercise looks like this :
require File.expand_path(File.dirname(__FILE__) + ''/edgecase'')
class AboutSandwichCode < EdgeCase::Koan
def count_lines(file_name)
file = open(file_name)
count = 0
while line = file.gets...
2010 Nov 16
1
Changing default nic and storage types
Hi,
Simple question that I can't track down any notable discussion about,
let alone an answer...
Is it possible to define what the "default" nic and storage types are?
I am deploying images out of cobbler using koan and all of them are
running virtio wherever applicable, but this is not the default, and
at present there is no way within koan or cobbler to define what type
of devices they should be. I've hard coded this device type
declaration into koan, but don't like that in the slightest, and would
t...
2011 May 13
0
[LLVMdev] [Patch] Let MC/ELF generate Thumb/Thumb-2 are properly
Hi Koan,
In general, this looks OK to me. Please split the patch into separate pieces, one for each issue you're addressing, though. From your description, it sounds like this should be 4 patches. That way we have a cleaner revision history in svn.
-Jim
On May 12, 2011, at 10:42 PM, Koan-Sin Tan wro...
2011 May 13
2
[LLVMdev] [Patch] Let MC/ELF generate Thumb/Thumb-2 are properly
Renato,
The result of running 'llvm-lit $LLVM/TEST/MC" is:
Expected Passes : 330
Expected Failures : 20
Actually it passed "make check", no unexpected result.
On Fri, May 13, 2011 at 5:14 PM, Renato Golin <renato.golin at arm.com> wrote:
> On 13 May 2011 06:42, Koan-Sin Tan <koansin.tan at gmail.com> wrote:
>> With that attached patch, we can compile and run some (not all) Android
>> NDK samples without problem.
>
> Hi Koan,
>
> Have you tried to run Intel and other platform tests?
>
> I feel uncomfortable with so many chang...
2013 May 10
2
Way for a VM to reboot from a snapshot?
Using the koan command, a VM can essentially request
that it be reprovisioned.
Is there any way for a VM to request that it reboot from
a snapshot taken with virsh?
Thanks..
--
#ken B-)}
Ken Coar, RHCE, RHCSA, Sanagendamgagwedweinini
IT Engineering Tower, Red Hat/RDU
"Millennium hand and shrimp!"...
2011 May 16
0
[LLVMdev] [Patch] Let MC/ELF generate Thumb/Thumb-2 are properly
...c-elf-arm-backend-bl-blx-sign-bit.diff: for 2.
mc-elf-thumb-bl-blx-relocation-table-entry.diff: for 3.
mc-elf-cpu-xscale-attributes.diff: for 4.
elf-thumbfunc.s: test case for 1
elf-thumbfunc-reloc.ll: test case for 2 and 3
elf-xscale-attribute.ll: test case for 4
On Fri, May 13, 2011 at 1:42 PM, Koan-Sin Tan <koansin.tan at gmail.com> wrote:
> Hi,
>
> We are trying to use clang as a drop-in replacement for the gcc come with
> Android NDK. I found that MC/ELF doesn't not handle Thumb functions properly,
> e.g., bit 0 of the function name in the .symtab is not set to 1, a...
2008 Jul 26
5
Ctrl-Alt-Fn
Hi,
I''ve been posting this question to lots of lists and not getting good
answers.
I have a Ubuntu Hardy laptop.
With a ssh connection to a RHEL5 xen dom0.
Running cobbler/koan on the dom0
Koan --virt --nogfx ...
starts a new domU on the xen box
and starts up the RHEL5 installer
the installer attempts to configure its network interface using DHCP and
gets stuck
If this was an install on a real physical hardware
I would sit at the console and use Ctrl-Alt-Fn to access var...
2012 Sep 21
3
(koans) another problem (syntax error)
Hello,
I now trying to solve this one :
# Triangle Project Code.
# Triangle analyzes the lengths of the sides of a triangle
# (represented by a, b and c) and returns the type of triangle.
#
# It returns:
# :equilateral if all sides are equal
# :isosceles if exactly 2 sides are equal
# :scalene if no sides are equal
#
# The tests for this method can be found in
#
2011 Apr 29
1
[LLVMdev] [Patch] Thumb BLXr doesn't set the register operand
The tBLXr description in ARMInstrThumb.td is not complete. It doesn't set
the register operand.
--
// koan-sin tan
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110429/5f375f23/attachment.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: tBLXr.diff
Type: application/oct...
2011 May 16
2
[LLVMdev] [Patch] Let MC/ELF generate Thumb/Thumb-2 are properly
On 11-05-16 09:21 AM, Koan-Sin Tan wrote:
> splited patches and test cases
>
> mc-elf-thumbfunction-bit.diff: for 1
> mc-elf-arm-backend-bl-blx-sign-bit.diff: for 2.
> mc-elf-thumb-bl-blx-relocation-table-entry.diff: for 3.
> mc-elf-cpu-xscale-attributes.diff: for 4.
>
> elf-thumbfunc.s: test case for...
2011 May 13
0
[LLVMdev] [Patch] Let MC/ELF generate Thumb/Thumb-2 are properly
On 13 May 2011 12:16, Koan-Sin Tan <koansin.tan at gmail.com> wrote:
> The result of running 'llvm-lit $LLVM/TEST/MC" is:
> Expected Passes : 330
> Expected Failures : 20
> Actually it passed "make check", no unexpected result.
Try make check-all, it runs more tests...
Still, I think...
2007 Aug 15
1
yum update fails, cobbler check fails
...package:
nfs-utils
--> Finished Dependency Resolution
Error: Missing Dependency: libevent-1.1a.so.1()(64bit) is needed by
package nfs-utils
I could do a force past this, but was just curious if anyone else has
run into this issue.
The reason I ask is that I just installed RPMforge, cobbler, koan, and
dnsmasq.
11 wget
ftp://rpmfind.net/linux/dag/redhat/el4/en/x86_64/dag/RPMS/rpmforge-release-0.3.6-1.el4.rf.x86_64.rpm
12 rpm -ivh rpmforge-release-0.3.6-1.el4.rf.x86_64.rpm
13 yum install cobbler
14 yum install koan
16 yum install dnsmasq
17 cobbler check
-I get this er...
2011 May 13
1
[LLVMdev] [Patch] Let MC/ELF generate Thumb/Thumb-2 are properly
On 11-05-13 08:15 AM, Renato Golin wrote:
> On 13 May 2011 12:16, Koan-Sin Tan<koansin.tan at gmail.com> wrote:
>> The result of running 'llvm-lit $LLVM/TEST/MC" is:
>> Expected Passes : 330
>> Expected Failures : 20
>> Actually it passed "make check", no unexpected result.
>
> Try make check-all, it runs mor...
2011 May 18
0
[LLVMdev] [Patch] Let MC/ELF generate Thumb/Thumb-2 are properly
...hed.
patch-2-3.diff:
fixes target address tBL and tBLX and sets relocation type
of tBL/tBLX to R_ARM_THM_CALL (ARM ELF 4.7.1.6)
patch-4.diff:
adds some attributes to attribute section when cpu is "xscale"
(this is what used in Android NDK, when architecture is ARMv5)
Thanks,
// koan-sin tan
-------------- next part --------------
A non-text attachment was scrubbed...
Name: mc-elf-thumb.tgz
Type: application/x-gzip
Size: 1973 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110518/ca2bd16e/attachment.bin>
2016 Feb 10
2
Centos 7 Xen Release!
I am pleased to announce the official release of Virt SIG Xen packages
for CentOS 7.
To install:
* Install centos-release-xen from centos-extras
yum install centos-release-xen
* Update to get the new kernel:
yum update
* Install the Xen packages from the centos-virt-xen repo:
yum install xen
There are also packages for libvirt 1.3.0 (which should be compatible
with openstack) and
2011 May 17
0
[LLVMdev] [Patch] Let MC/ELF generate Thumb/Thumb-2 are properly
On Tue, May 17, 2011 at 12:29 AM, Rafael Avila de Espindola
<rafael.espindola at gmail.com> wrote:
> On 11-05-16 09:21 AM, Koan-Sin Tan wrote:
>>
>> splited patches and test cases
>>
>> mc-elf-thumbfunction-bit.diff: for 1
>> mc-elf-arm-backend-bl-blx-sign-bit.diff: for 2.
>> mc-elf-thumb-bl-blx-relocation-table-entry.diff: for 3.
>> mc-elf-cpu-xscale-attributes.diff: for 4.
>>...