Displaying 4 results from an estimated 4 matches for "file_loader".
Did you mean:
file_loaded
2007 May 09
3
engines causing problems with mocks
As I delve further into using engines and rspec together I am
noticing more strange issues.
describe "Requesting /admin/collections using get" do
controller_name :admin_collections
before(:each) do
Collection.stub!(:paginate)
end
it "should return a collection of collection objects" do
get ''index''
response.should be_success
2002 Aug 13
2
AW: Unable to open configuration file "/etc/smb.conf" (or whereve r i specify)
Hi,
it looks like you have something really messed up on your system.
The size of the file 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
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_fil...