Displaying 4 results from an estimated 4 matches for "file_load".
Did you mean:
file_pload
2007 May 09
3
engines causing problems with mocks
...load''
./vendor/plugins/sor_core/spec/controllers/
admin_collections_controller_spec.rb:7
137 # if we managed to load a file, return true. If not, default
to the original method.
138 # Note that this relies on the RHS of a boolean || not to be
evaluated if the LHS is true.
139 file_loaded || require_or_load_without_engine_additions
(file_name, const_path)
140 end
141 end
This looks like its coming from engines - but it could just be that
engines has assumed responsibility for loading dependencies and that
the error is really from rspec.
Any ideas?
I''m very keen...
2002 Aug 13
2
AW: Unable to open configuration file "/etc/smb.conf" (or whereve r i specify)
...ile is 1243 bytes (from strace) but 0 bytes are being read.
If you had no permission to read the strace would have looked like this:
open("/etc/samba/smb.conf", O_RDONLY|O_LARGEFILE) = -1 EACCES (Permission
denied)
A quick look at the source code reveals:
/etc/samba/smb.conf is opened in file_load (lib/util_file.c) which is being
called from OpenConfFile (param/params.c). Then fd_load tries to read the
file into memory.
"Unable to open configuration file" is only being printed if file_load
returns NULL which is being called if fd_load returns NULL which it does as
the read returns...
2007 Mar 19
5
Problem well trying to run Need For Speed Porsche Unleased
So I have Need For Speed Porsche Unleased and I have ubuntu 6.06 LTS
and I have wine 0.9.90-ubuntu2 which I installed using the package
manager . So I simply use wine and I get to play NFS on ubuntu simple
right. I install NFS and everything goes fine. I then go to wincfg and
add NFS and change it to run in 98. Error one I run the shortcut on my
desktop in a terminal and I get this
2007 Jul 31
0
10 commits - doc/swfdec-docs.sgml doc/swfdec-sections.txt libswfdec-gtk/swfdec_gtk_loader.c libswfdec/Makefile.am libswfdec/swfdec_as_context.c libswfdec/swfdec_as_frame.c libswfdec/swfdec_buffer.c libswfdec/swfdec_debugger.c libswfdec/swfdec.h
...eue_unref (loader->queue);
- g_free (loader->url);
+ swfdec_url_free (loader->url);
g_free (loader->error);
G_OBJECT_CLASS (swfdec_loader_parent_class)->dispose (object);
@@ -196,56 +196,42 @@ swfdec_loader_init (SwfdecLoader *loader
G_DEFINE_TYPE (SwfdecFileLoader, swfdec_file_loader, SWFDEC_TYPE_LOADER)
static void
-swfdec_file_loader_dispose (GObject *object)
-{
- SwfdecFileLoader *file_loader = SWFDEC_FILE_LOADER (object);
-
- g_free (file_loader->dir);
-
- G_OBJECT_CLASS (swfdec_file_loader_parent_class)->dispose (object);
-}
-
-static SwfdecLoader *
-swfdec_f...