Displaying 20 results from an estimated 40000 matches similar to: "Errno::ENOBUFS:"
2008 Jan 18
3
Please help
Hello all,
I have developed a RESTFul webservice in RoR. Here under is the controller
---------------------------------------------------------------------------------------------------------
class PeopleController < ApplicationController
def index
list
render :action => ''list''
end
# GETs should be safe (see
http://www.w3.org/2001/tag/doc/whenToUseGet.html)
2007 Dec 18
2
RFacebook | Help required
Hello all,
I am developing a basic application using RFacebook. The tutorial Im
following is from
http://www.liverail.net/articles/2007/6/29/tutorial-on-developing-a-facebook-platform-application-with-ruby-on-rails
After I develop the facebook app, and start the server and send a request to
http://127.0.0.1:3000/socialrecipe, it takes me to the facebook login page
(as expected, so no issues up
2009 Sep 26
2
Config XLSUITE in Windows
I try to config XLSUITE in my system. I''m facing some problem i resolved
it one by one.
now im facing this error
=> Booting Mongrel (use ''script/server webrick'' to force WEBrick)
=> Rails 2.2.0 application starting on http://0.0.0.0:3000
=> Call with -d to detach
=> Ctrl-C to shutdown server
** Starting Mongrel listening at 0.0.0.0:3000
Exiting
2011 Feb 26
1
Re: gem error: (Errno::EACCES) Permission denied
I am using microsoft XP Pro-SP3 and I am facing this problem.
C:\Ruby192>gem install rails --include-dependencies
INFO: `gem install -y` is now default and will be removed
INFO: use --ignore-dependencies to install only the gems you list
ERROR: While executing gem ... (Errno::EACCES)
Permission denied - C:/Documents and Settings/admin/.gem/specs
Please help to complete with any idea.
2006 Aug 18
11
#<Errno::EMFILE: Too many open files
My application runs a backgrond process and after running for a while I
get this error in my logs:
#<Errno::EMFILE: Too many open files
Lasty, the ONLY code I have that does anything with files is:
File.open(image_path, "wb") do |file|
file.puts file_content
end
Any idea what this means?
--
Posted via http://www.ruby-forum.com/.
2010 Mar 03
6
File paths must be fully qualified
I was using Puppet 0.24.8 and now upgrade the puppet server and client
both to 0.25.4 (on 1 machine i.e. server and client), but i am facing
some problems. While testing, some of the configs which were/are running
fine on older version generates error here;
for instance,
i have defined the FileSource path in ''/etc/puppet/fileserver.conf''
[myFileSrc]
path
2007 Oct 09
0
Samba Doesnt do ADS Authentications
Hiya
I Have configured my samba machine as a member of Windows AD (win2k3
Machine). All the configuration went on successfully when I execute net
ads testjoin ; I get output as "OK" and I can see my samba machine in AD
computers and users. also i get a proper output from wbinfo -u -g. My
kerberos tickets are valid. Now the problem I'm facing is
Case1: When I enter the machine
2012 Nov 17
2
problem with "any" function
Dear R users,
I have the "any" function of R
any(ind.c, ind.r, ind.sgn)
all are logical factors
it works fine when any of three is true
but when they are combined it doesnt work.
i tried
this
any(ind.c, ind.r, ind.sgn,((ind.c==TRUE) & (ind.r==TRUE)),
((ind.c==TRUE) & (ind.sgn==TRUE)),((ind.r==TRUE) & (ind.sgn==TRUE)),
((ind.c==TRUE) & (ind.r==TRUE) &
2012 Apr 25
1
forwarding packets to service in same host without using loopback network
This question is not about linux usage. But still i think user list
is a good crowd for linux programmer. So here it goes.
I have this libnetfilter_queue application which receives packets from
kernel based on some iptables rule. Before going straight to my
problem, i'm giving a sample workable code and other tools to set up a
test environment so that We problem definition and possible
2010 Feb 24
1
Puppet 0.25.* SLES 11 Package
Hello members,
We are using Puppet-Server 0.24.8 with Factor (1.5.2-1.20) and Puppet
0.24.5 (for client nodes) on our SuSE Machines and its working fine. We
are now planning to upgrade to latest stable release 0.25.* for server
(with factor) and client-nodes. We just like to enquire you if there is
a package/rpm available for SLES 11? If yes, please share with us?
Thanks
--
M. Haris
2014 Mar 17
4
[PATCH 1/4] ocaml: Add Guestfs.Errno submodule exposing useful raw errno numbers.
For use when calling G.last_errno.
---
generator/ocaml.ml | 15 +++++++++++++++
ocaml/guestfs-c.c | 8 ++++++++
2 files changed, 23 insertions(+)
diff --git a/generator/ocaml.ml b/generator/ocaml.ml
index 78cff89..29a9eb6 100644
--- a/generator/ocaml.ml
+++ b/generator/ocaml.ml
@@ -121,10 +121,20 @@ val last_errno : t -> int
(or [0] if there was no errno). Note that the returned
2013 Sep 13
0
[LLVMdev] [RFC] New function attributes for errno-setting functions
On Fri, Sep 13, 2013 at 2:07 PM, Hal Finkel <hfinkel at anl.gov> wrote:
> ----- Original Message -----
> >
> > Food for thought: If you have a codebase which can't use
> > -fno-math-errno, because it relies on errno values from math
> > functions, it may be a more effective long-term strategy to work on
> > modernizing your codebase, eliminating the
2013 Sep 13
0
[LLVMdev] [RFC] New function attributes for errno-setting functions
On 9/13/2013 3:37 PM, Hal Finkel wrote:
>
> No, I don't think so. If sqrt is not readnone or readonly, then it should potentially alias whatever the errno macro actually expands to (whether it is a global variable, and thread-local variable, a function call, or whatever).
I'm not sure about this. How about this:
extern int BLAH;
#define errno BLAH
Then we have
int fd =
2013 Sep 17
0
[LLVMdev] [RFC] New function attributes for errno-setting functions
On 9/17/2013 2:43 PM, Hal Finkel wrote:
>
> That would depend on how this attribute was used; it could only be used by a pass that did actually understand what those side effects were (like the loop vectorizer understanding that, if errno is ignored, then vectorizing cos() is legal). I don't object to making the name generic, but I want to make sure that we're all on the same page
2013 Sep 13
0
[LLVMdev] [RFC] New function attributes for errno-setting functions
On 9/12/2013 7:44 PM, Hal Finkel wrote:
>
> To fix this problem, I think that we need to stop treating errno as some arbitrary external state, and model is explicitly.
In such case it would make sense to know when "errno" is read. This way
we could detect whether it's actually used, whether or not the
-fno-math-errno (or some generic -fno-xyz-errno) was specified. Problem
2009 Mar 06
0
[PATCH 3/3] COM32/stat(): preset ret and move zeroing errno
From: Gene Cumm <gene.cumm at gmail.com>
COM32/stat(): preset ret and move zeroing errno
Signed-off-by: Gene Cumm <gene.cumm at gmail.com>
---
Depends on string of patches this week
diff --git a/com32/lib/sys/stat.c b/com32/lib/sys/stat.c
index d1b2629..da55e0c 100644
--- a/com32/lib/sys/stat.c
+++ b/com32/lib/sys/stat.c
@@ -28,7 +28,9 @@
/*
* stat.c
*
- * Very trivial stat
2013 Sep 13
0
[LLVMdev] [RFC] New function attributes for errno-setting functions
On 9/13/2013 2:23 PM, Hal Finkel wrote:
>
> Maybe the easiest way would be to insert an intrinsic @llvm.errno.read() whenever errno (as a source token) appears in the source as an rvalue (and do some similar thing when it appears as a lvalue). Thoughts?
I think the major problem is still with "errno" defined as a
preprocessor macro, as it may not look like errno by the time the
2013 Sep 17
0
[LLVMdev] [RFC] New function attributes for errno-setting functions
On 9/12/2013 7:44 PM, Hal Finkel wrote:
>
> 1. 'writes-only-errno'
> 2. 'errno-ignored'
Do we really need the first one? We already know which standard
functions could potentially set errno, and we know which standard
functions don't modify any other storage (other than that which is
passed via parameters). I think it's safe to assume that standard
2009 Oct 12
0
"nfsd: non-standard errno: -512"
CentoOS 5.3, 2.6.18-164.el5.
ocfs2-tools-1.4.3-1.el5
ocfs2-2.6.18-164.el5-1.4.4-1.el5
I have NFS Sharing ocfs2 volume over NFS3, and sometimes NFS server
stop with error:
"nfsd: non-standard errno: -512"
Oct 12 17:01:22 piano nfsd[9885]: nfssvc: Setting version failed:
errno 16 (Device or resource busy)
Oct 12 17:01:22 piano nfsd[9885]: nfssvc: unable to bind UPD socket:
errno 98
2006 May 01
2
klibc: s390 errno...
I'm trying to do a full rebase (history clean) of the klibc kernel tree,
and came across the following changesets between klibc 1.3.12 and .16:
--- a/usr/klibc/arch/s390/syscall.c
+++ b/usr/klibc/arch/s390/syscall.c
@@ -11,6 +11,6 @@ long int __syscall_common(long int err)
{
if ((unsigned long)(err) < (unsigned long)(-125))
return err;
- errno = err;
+