Displaying 20 results from an estimated 159 matches for "moses".
Did you mean:
oses
2014 Apr 08
2
Test de Moses
¿Alguien sabe si el test de reacciones extremas de Moses está escrito en
algún paquete de R?
Gracias de antemano.
2002 Dec 29
0
(no subject)
...ironment with Red Hat 8.0 as a
server for running Apache and PHP and Windows 2000 for ASP and SQL
server. I
have only managed partial success in setting up Samba and getting the
two
machines to communicate.
The domain name is FLOWXYZ and the two machines are configured as
follows:
The server is moses and its IP address is 192.168.0.1 / 255.255.255.0
The Win2k machine is manumission and its IP address: 192.168.0.2 /
255.255.255.0
I am able to see the Linux machine under Network Neighbourhood on
Win2k,
but when I open the icon to view shared folders, I get the following
error
message :...
2007 May 23
4
content_for
Any ideas how I would go about writing specs for views which make use
of content_for?
I''d like, for example, to be able to specify that ABC view places XYZ
in the sidebar, which I do using content_for(:sidebar).
Am I missing something obvious?
Kyle
2013 Mar 18
3
Hiera 1.2.0-rc2 and deep-merge
Stumbled around a bit until I figured out you need to do this:
gem install deep_merge
to get it to work !
“Sometimes I think the surest sign that intelligent life exists elsewhere in the universe is that none of it has tried to contact us.”
Bill Waterson (Calvin & Hobbes)
--
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
2020 Jan 03
2
Attribute for Function that does not write to memory that outlives itself
...to query whether a function
could write to memory that outlives itself?
For example writing to a global or memory passed in via a function argument
would be writing to memory that outlives the function, but writing to a
stack variable or allocation that isn't returned would not.
Cheers,
Billy Moses
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20200103/955d7071/attachment.html>
2013 Feb 05
2
Problems with PuppetLabs Yum Repo
Trying to update a RHEL5 x86_64 server
Yum sees puppet-server 3.1.0-1.el5, but does not see puppet 3.1.0-1.el5
I tried cleaning out the cache and trying again, but no luck.
I am going to download the RPM and localinstall it so I am not held up.
“Sometimes I think the surest sign that intelligent life exists elsewhere in the universe is that none of it has tried to contact us.”
Bill
2009 Mar 21
5
Fisher test problem
...ther
sets of data, I had got a p value of 1 in 3 instances for a prop.test
when I got 3 other answers on a friend's stata software with the same
data. )
I'm using R on Ubuntu Intrepid. Is there anything I'm doing wrong? Any
other packages I have to install?
Thanks in advance
Viju Moses
2013 Mar 21
3
Announce: Puppet Dashboard 1.2.23 Available
...dback via the Puppet Labs Redmine site, using an
affected version of 1.2.23:
http://projects.puppetlabs.com/projects/dashboard
Documentation is available at: http://docs.puppetlabs.com/dashboard/index.html
Contributors:
Aaron Stone, Daniel Pittman, Dustin J. Mitchell, Ken Barber, Matthaus
Owens, Moses Mendoza, and fhrbek
=====================================
## Puppet Dashboard 1.2.23 Release Notes ##
=====================================
Comment out specific gem rack version in our vendored Rails
* addresses http://projects.puppetlabs.com/issues/11669
(#17914) Store FlashHash as a normal...
2013 Oct 14
1
[LLVMdev] Runtime Array-Length
...r
> only if the existing one is too small.
>
> Ultimately you will need to work out if you want pascal / java style
> strings like mine, or C style NULL terminated strings. And how the memory
> for these strings will be managed.
>
>
> On Sun, Oct 13, 2013 at 4:43 AM, William Moses <
> moses.williamsteven at gmail.com> wrote:
>
>> All,
>>
>> I am building my own language with llvm as the base.
>>
>> I was working on string concatenation (where a string is just an array of
>> characters cast to a pointer to a character (i8*) ). G...
2013 Nov 09
0
[LLVMdev] Variable-length Phi-node
On 9 Nov 2013, at 16:35, William Moses <moses.williamsteven at gmail.com> wrote:
> Is it possible to create something which has the same effect of a variable-length phi node in the C++ api. Specifically, create a phi-node where the number of incoming values is not known at the time of its creation.
The PHI node preallocates i...
2019 Jul 23
2
[RFC] Optimization Remark for derived function / argument attributes
...(0,
"nocapture") arg_attr(0, "readonly") [-Rannotations]
double f(double* a) {
foobar.c:
double f(double* a) {
return a[0];
}
A work in progress patch implementing such an optimization remark is
available here: https://reviews.llvm.org/D65169
Cheers,
Billy Moses
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20190723/c29e167f/attachment.html>
2013 Nov 09
2
[LLVMdev] Variable-length Phi-node
All,
Is it possible to create something which has the same effect of a
variable-length phi node in the C++ api. Specifically, create a phi-node
where the number of incoming values is not known at the time of its
creation.
If there is no such way of creating a phinode like that, would it be
possible to create a dummy instruction and perform a replaceAllUsesWith? If
so, what should the dummy
2007 Jun 24
6
mocking errors
What is the correct way to mock out the errors on a Rails model?
I''m assuming i need to say
@mock_thing = mock_model(Thing)
@mock_thing_errors = mock("errors")
@mock_thing_errors.should_receive(:full_messages).and_return("An error")
@mock_thing.should_receive(:errors).and_return(@mock_thing_errors)
Just wanted to check the best practice on this kind of thing and how
2007 Jun 26
4
Can I stub a method on a belongs_to association:
describe Asset, " when destroyed" do
fixtures :assets, :videos, :sites, :publish_settings
before(:each) do
@asset = assets(:test_asset)
@mock_hook = mock("hook")
@asset.video.stub!(:hook).and_return @mock_hook # error occurs here
end
it "should call the delete hook" do
@mock_hook.should_receive(:update).with("test_video",
2007 Sep 01
1
why doesn't as.character of this factor create a vector ofcharacters?
...lem with your code.
If you have a data.frame with factors, then
df[df$a=="Abraham",]
returns a list. Each element of this list is a factor, and has a
different set of levels. Thus, look at the following output:
> c(df[df$a=="Abraham",])
$a
[1] Abraham
Levels: Abraham Jonah Moses
$b
[1] Sarah
Levels: Hannah Mary Sarah
$c
[1] Billy
Levels: Billy Bob Joe
It is quite obvious why it is so complicated to untangle these. I
think the best way would be:
one.line<- sapply(df[df$a=="Abraham",],as.character)
Michael
-----Original Message-----
From: r-help-bounces_at...
2015 Mar 09
5
[LLVMdev] LLVM Parallel IR
...y short: I was wondering if anyone in the LLVM community has
already begun a similar project or knows of something that begins to
accomplish this.
Additionally, does anyone who has worked with parallelism in LLVM have any
specific comments or suggestions regarding this project.
Sincerely,
William Moses
MIT Computer Science and Artificial Intelligence Laboratory
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150309/5825b107/attachment.html>
2013 Nov 09
1
[LLVMdev] Variable-length Phi-node
...Get more space!
// Initialize some new operands.
++NumOperands;
setIncomingValue(NumOperands - 1, V);
setIncomingBlock(NumOperands - 1, BB);
}
-Filip
On Nov 9, 2013, at 9:56 AM, David Chisnall <David.Chisnall at cl.cam.ac.uk> wrote:
> On 9 Nov 2013, at 16:35, William Moses <moses.williamsteven at gmail.com> wrote:
>
>> Is it possible to create something which has the same effect of a variable-length phi node in the C++ api. Specifically, create a phi-node where the number of incoming values is not known at the time of its creation.
>
> The PHI...
2013 Oct 14
0
[LLVMdev] Runtime Array-Length
...ration that will reallocate the buffer
only if the existing one is too small.
Ultimately you will need to work out if you want pascal / java style
strings like mine, or C style NULL terminated strings. And how the memory
for these strings will be managed.
On Sun, Oct 13, 2013 at 4:43 AM, William Moses <
moses.williamsteven at gmail.com> wrote:
> All,
>
> I am building my own language with llvm as the base.
>
> I was working on string concatenation (where a string is just an array of
> characters cast to a pointer to a character (i8*) ). Given two strings, it
> is poss...
2013 Oct 12
2
[LLVMdev] Runtime Array-Length
All,
I am building my own language with llvm as the base.
I was working on string concatenation (where a string is just an array of
characters cast to a pointer to a character (i8*) ). Given two strings, it
is possible to determine the length of new string by summing the number of
characters until the null terminator and adding one.
Unfortunately, I have no idea how to use the c-api to store
2012 May 15
1
Puppet Labs devel package repos for yum and apt
...se-devel-15-1.noarch.rpm
Fedora 16:
sudo rpm -ivh
http://yum.puppetlabs.com/fedora/f16/devel/i386/puppetlabs-release-devel-16-1.noarch.rpm
Debian-based distros:
wget http://apt.puppetlabs.com/puppetlabs-release-devel_1.0-2_all.deb
sudo dpkg -i puppetlabs-release-devel_1.0-2_all.deb
Cheers,
Moses Mendoza
Puppet Labs
--
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to puppet-users+unsubscribe@googlegroups.com.
For more op...