search for: herehttp

Displaying 20 results from an estimated 20 matches for "herehttp".

2015 Jun 22
2
[LLVMdev] Enabling the gold linker on freebsd
...the link time optimizations. I made gold from the binutils under /usr/ports. After building binutils using make -k install clean i got ld under /usr/bin and in the directory /usr/local/bin i got ld, ld.gold and ld.bfd. Now while trying to use link time optimization for the simple example programs herehttp://llvm.org/docs/GoldPlugin.html (a.c and b.c under the heading 'Examples of Link Time Optimization') i entered the four commands as follows: clang -flto a.c -c -o a.o ar q a.a a.o clang b.c -c -o b.o clang -flto a.a b.o -o main I got the following error: usr/bin/ld: unrecogonized option...
2020 Jan 30
2
[RFC] How to manifest information in LLVM-IR, or, revisiting llvm.assume
...n. I believe you're thinking about addressing this with outlining, but I think that these are separate issues because the outlining needs to be done early. Regarding this late-outlining approach: > A prototype for both operand bundle assumptions and outlined assumptions > is available herehttps://reviews.llvm.org/D71692. Note that most code > is required do to the outlining [see rational in point C) below]. This > is not as actively purposed for now as the operand bundle use. I don't see how this can work in the case where you have side effects. Once you generate the code in...
2015 Jun 23
3
[LLVMdev] Enabling the gold linker on freebsd
...utils under /usr/ports. After > > building binutils using make -k install clean i got ld under /usr/bin > and in > > the directory /usr/local/bin i got ld, ld.gold and ld.bfd. > > > > Now while trying to use link time optimization for the simple example > > programs herehttp://llvm.org/docs/GoldPlugin.html (a.c and b.c under the > > heading 'Examples of Link Time Optimization') i entered the four > commands as > > follows: > > > > clang -flto a.c -c -o a.o > > ar q a.a a.o > > clang b.c -c -o b.o > > clang -flto a.a...
2010 Dec 13
2
[LLVMdev] Documentation is missing hardware platform FreeBSD on amd64 and states that Solaris/Sparc is 'working'
Here http://llvm.org/docs/GettingStarted.html#requirements FreeBSD/amd64 isn't mentioned. It works quite fine for me. Also, it mentions that its known to work on Solaris/V9(Ultrasparc). Isn't this wrong since JIT isn't currently working on Sparc and is only expected to work with MC project completion? Sparc should me mentioned in the 'partial support' table. Also, I think
2010 Dec 15
0
[LLVMdev] Documentation is missing hardware platform FreeBSD on amd64 and states that Solaris/Sparc is 'working'
On Dec 13, 2010, at 10:26 AM, Yuri wrote: > Here http://llvm.org/docs/GettingStarted.html#requirements FreeBSD/amd64 > isn't mentioned. It works quite fine for me. > Yes, it should. I fixed that. Thanks! > Also, it mentions that its known to work on Solaris/V9(Ultrasparc). > Isn't this wrong since JIT isn't currently working on Sparc and is only > expected to
2008 Nov 11
1
Admin controller
This is very weird behavior for rails. 1. When I visit my app http://localhost:3000/admin/base/login class Admin::BaseController < ApplicationController def login render :text => "running" end end 2. but when I go here http://localhost:3000/ I get error because login.html.erb not found 3. even though my route looks like this. map.root :controller =>
2011 Aug 04
1
Creating form for associated has_many model
This example shows how to create a form for an associated model ''Comment'', where ''Comment'' belongs_to ''Post'' and ''Post has_many ''Comments''. http://edgeguides.rubyonrails.org/getting_started.html#generating-a-controller How might I modify that to display all the comments in the form, and still have it call the
2011 Jan 24
1
passing multiple arguments in resque scheduler
Hi, I have implemented resque scheduler in my application by looking at example here https://github.com/bvandenbos/resque-scheduler. I have configured resque_schedule.yml file, and in that I can pass arguments to the resque job. My requirement is to pass more than one arguments to the queueing resque job. If we consider the example given, clear_leaderboards_contributors: cron: "30 6 * *
2012 Jan 24
7
Ruby update
Hello, I''m using instantrails 2 to develop RubyOnRails projects on windows and need to update my ruby version to 1.8.7 (I''m still using 1.8.6). I downloaded ruby 1.8.7 here http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7.zip and unzipped files in the ruby folder of instantrails but when I check "ruby -v" I still got 1.8.6 (I tried a gem update and same thing, some gems
2009 May 30
2
Generating and authenticating by API keys
I''m trying to get my head round offering up an API for a RESTful app; is it just a matter of; 1. adding an api_key column to the resource on which incoming requests will made (the app has a User model but I think the API authentication will need to be done on the Site model to which Users belong), 2. generating the API key using Digest::SHA1 or similar (the last dev used SHA1 for the
2009 Oct 02
4
Can't access http://localhost:3000
Hello, Pure newbie question. After installeing Ruby, Rail and al the gems I am following the tutorial here http://guides.rubyonrails.org/getting_started.html I start a server with Mongrel and it seems to be working, but when I try to acces http://localhost:3000 i get a firefox error: Firefox can''t establish a connection to the server at localhost:3000 I work under Vista with Ruby the
2010 Jun 10
4
rails removes newlines and spaces from ajax requests
Hi I have an app which posts an ajax request with with text area content, but when it does post it it gets all the newlines and multiple spaces removed (need to use multiple spacing for use with markdown code snippets) I''ve created a sample app which you can see here http://test.42horizons.com/test, View it in IE 8 and both requests remove line spaces and new lines, view it in firefox
2009 Jul 04
9
prevent orphan records
If I have belongs_to :user Do I need to have validates_presence_of :user_id ? Does Rails validate the presence of :user_id automatically if I have belongs_to :user? In other words, does Rails prevent against creating orphan records that belong to non-existent users? Thanks. -- Posted via http://www.ruby-forum.com/.
2011 Nov 18
4
puppet agent 2.7 on windows
Hi Team, Tried following the steps here http://projects.puppetlabs.com/projects/1/wiki/Puppet_Windows for deploying an agent on windows (windows server 2008 r2) but really finding it hard to make it work (the agent deployment itself went fine after following the steps). I have a working puppet-server on RH 6 and have tested few RH clients which work fine. The very first hurdle is that i
2009 Dec 29
15
help needed - undefined method `reenable' for <Rake::Task db:schema:dump => [environment]>:Rake::Task
Hello, I am trying to deploy my app at the moment, and each time I do, I get the following error when i run a trace on it: rake db:migrate --trace (in /srv/some area/someplaceelse...) ** Invoke db:migrate (first_time) ** Invoke environment (first_time) ** Execute environment ** Execute db:migrate ** Invoke db:schema:dump (first_time) ** Invoke environment ** Execute db:schema:dump rake
2017 Jun 06
3
[Cellar] FLAC Markdown
Hello all! (cc-ing the flac-dev list) I would like to give an update as to the recent CELLAR work on the FLAC specification. • Work has been done to make internal and external links more accurate and reliable. • 'Rice Coding' has been clarified as 'Exponential Golomb Coding.' • Clarifications have been made for binary representation. • Typos and other small changes have been
2007 Jun 15
4
404 Error in any controller/action on Media Temple
Hi everybody. I''m a newbie on RoR. I have some experiencie developing in PHP or Java, but I''m just starting with RoR. A few days ago I signed up to the (gs) Grid Service on Media Temple. This is my very first experience deplying RoR on a production enviroment. Until now I just used the WebRick server on developement. Well, the problem I''m having is that after
2011 Feb 09
16
rails 3.0.4 broke yield :javascript ?
hello, I have today updated my rails app to 3.0.4 security release but now this yield :javascripts fails in the layout and I get my custom js escaped as text in the view. anybody seeing this also? tia, jk -- www.least-significant-bit.com -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group. To post to this group, send email to
2009 Dec 02
14
root_path and root_url undefined
Hi all, I''ve just started working on another RoR project after a couple of months away. I''m having trouble with named routes, specifically root_* In previous apps I''ve used root_path and root_url without any problems, but in this project (2.3.2 - the same as my last project where I used it) it comes up undefined. I''ve double and triple checking my routes.rb,
2019 Dec 16
7
[RFC] How to manifest information in LLVM-IR, or, revisiting llvm.assume
Abstract: It is often hard or impossible to encode complex, e.g., non-boolean, information in an `llvm.assume(i1)`. This RFC describes various problems we have right now and provides alternative design ideas. Some Existing Problems: A) The boolean requirement. The current `llvm.assume(i1)` expects a boolean that is known to hold true at runtime (once the `llvm.assume` call is reached).