Displaying 20 results from an estimated 20 matches for "image_files".
Did you mean:
images_files
2005 Nov 23
1
assign() problem
I've written a piece of code (see below) to do a wavelet image
decomposition, during the evaluation of this code I would like to write
the results of some calculations back to the R root directory. I used
assign() to do so because the names should vary when going thrue a
while() loop. For some unknown reason I get an error that says:
Error in assign(varname[i], imwrImage) :
2020 Jun 30
2
fdisk boot partition
I am trying to use CentOS 8 host to boot an image (OS X) that I created
using dd.
First I tried fdisk -l image_file.img - all looks good so
I did fdisk image_file.img - this works - but seems in CentOS 8 fdisk
there is no longer a
toggle bootable flag option.
How do I do that ?
Thanks,
Jerry
2006 Feb 19
2
Prototype Ajax + File Uploading-- How?
Good evening!
I''m currently trying to submit some data and a file upload through Ajax.
I''m using rails & prototype, and somewhere there''s a disconnect. I''m
reasonably convinced the file upload isnt being sent at all, or if it is,
Rails has absolutely no idea. The form itself heads with:
<form onsubmit="new
2020 Jul 01
1
fdisk boot partition
On Jun 30, 2020, at 1:25 PM, John Pierce <jhn.pierce at gmail.com> wrote:
>
> On Tue, Jun 30, 2020 at 12:12 PM Jerry Geis <jerry.geis at gmail.com> wrote:
>
>> I am trying to use CentOS 8 host to boot an image (OS X) that I created
>> using dd.
>>
>> First I tried fdisk -l image_file.img ...
>
>
> fdisk has been deprecated for quite a
2006 Jun 27
2
Serve an image up from an action
What I am really trying to do is use the file_column plugin for the file
uplaod/storage (to a non-application directory), but serve up the images
on my own (without the mage_tag url_for_file_column technique)
In the java world, I would simply do something like this:
<img src="myImageServlet?id=1">
and myImageServlet would simply return the appropriate mime headers and
data
2008 Sep 18
2
Setting up Fleximage
Hello!
I''ve been trying today to setup fleximage to handle photo uploads to a
RoR application by following the tutorial that is provided
(http://github.com/Squeegy/fleximage/wikis/gettingstarted)
Originally, I just dropped in all of the sample code that they provided,
which I copied below this question.
- When I tried to access "new" to upload a new photo, I received an
error
2007 Mar 28
3
attachment_fu Not Resizing
Hello,
Recently attachment_fu stopped resizing images for me. I''m puzzled
because before today it was resizing them and I don''t know what''s
changed. Here''s my code:
class Product < ActiveRecord::Base
has_attachment :content_type => :image,
:storage => :file_system,
:max_size => 18.megabytes,
2007 Jun 18
4
Images outside the site
I''m developing a site that will need to display images that will be stored in a location outside the site. What would be the easiest way to do this? The site will be running on a linux machine.
Thanks,
Will
---------------------------------
You snooze, you lose. Get messages ASAP with AutoCheck
in the all-new Yahoo! Mail Beta.
2011 Apr 29
3
running libguestfs as a service?
Hello,
First off, many thanks for libguestfs... very useful!
I'm trying to run libguestfs as an RPC service by using a python
daemon with the python libguestfs bindings. With this service I'm
"centrally" editing VM images, and often running many GuestFS() on the
same image file in a short amount of time to edit the image's
contents.
The problem I'm running across is
2006 Aug 11
0
File column and rmagick not creating resizing some images
I am new to RoR. I am trying to use file_column and rmagick to resize
images uploaded to my RoR app. The problem is that only images larger
than the dimensions specified in my code will resize. For instance, if
the uploaded image is 98x98, then the new images will remain that size.
How can I enlarge images using file_column and rmagick?
Here is the code in my model:
file_column
2020 Jun 30
0
fdisk boot partition
On Tue, Jun 30, 2020 at 12:12 PM Jerry Geis <jerry.geis at gmail.com> wrote:
> I am trying to use CentOS 8 host to boot an image (OS X) that I created
> using dd.
>
> First I tried fdisk -l image_file.img ...
fdisk has been deprecated for quite a long time, I think parted is the
preferred command line tool now.
--
-john r pierce
recycling used bits in santa cruz
2013 May 27
0
[Question] How to restore btrfs raid0 image file?
Hi,
So the case is, now I''ve got a btrfs image file, which is created from a
raid0 btrfs fs.
And if I run ''btrfs-image -r image_file /dev/sdf'', then I have to mount
it with ''degraded'' mode, and that still fails because raid0 requires two
disks at least.
So any ideas how to make it work?
thanks,
liubo
--
To unsubscribe from this list: send the line
2015 Jul 25
0
[LLVMdev] [LLD] support for dlltool generated libs in COFF/PECOFF
Hey guys,
So I was able to modify dlltool to produce the exact same layout as lib.exe
with the same section numbers etc.
I've first managed to first create the correct section so that lld gives me
link errors and then resolve those errors to create an exe.
This is one thing that is still missing that sticks out like a sore thumb
In the actual imports of the functions the objects are very
2016 Nov 09
0
[PATCH] filearch: Add s390 and s390x detection and tests.
...error (g, "file_architecture: unknown S/390 bit size: %s", bits);
+ return NULL;
+ }
+ }
else
r = elf_arch;
diff --git a/test-data/Makefile.am b/test-data/Makefile.am
index 86cd5a2..0ac7354 100644
--- a/test-data/Makefile.am
+++ b/test-data/Makefile.am
@@ -42,6 +42,7 @@ image_files = \
$(srcdir)/binaries/bin-ppc64-dynamic \
$(srcdir)/binaries/bin-ppc64le-dynamic \
$(srcdir)/binaries/bin-riscv64-dynamic \
+ $(srcdir)/binaries/bin-s390x-dynamic \
$(srcdir)/binaries/bin-sparc-dynamic \
$(srcdir)/binaries/bin-win32.exe \
$(srcdir)/binaries/bin-win64.exe \
@@ -54,6 +55...
2015 Jul 24
2
[LLVMdev] [LLD] support for dlltool generated libs in COFF/PECOFF
After some more digging and creating a few testcases in lld I have narrowed
it down to
The fact that dlltool generates
Contents of section .idata$7:
0000 55534552 33322e64 6c6c0000 USER32.dll..
Where as lld expects
Contents of section .idata$6:
0000 55534552 33322e64 6c6c0000 USER32.dll..
I recreated the hello64.test using dlltool for the lib and here is the
asm dump of
2016 Sep 14
5
[PATCH 1/2] filearch: Add RISC-V architecture.
---
src/filearch.c | 21 +++++++++++++++------
1 file changed, 15 insertions(+), 6 deletions(-)
diff --git a/src/filearch.c b/src/filearch.c
index 5985b73..cbc8372 100644
--- a/src/filearch.c
+++ b/src/filearch.c
@@ -56,14 +56,16 @@ cleanup_magic_t_free (void *ptr)
# endif
COMPILE_REGEXP (re_file_elf,
- "ELF.*(MSB|LSB).*(?:executable|shared object|relocatable),
2010 Jun 14
4
help
On Wed 5/5/2010 3:28 AM
Miller, Shao wrote,
----------------------------------------------
Good day again Matthew,
As per (c=80) * (h=2) * (s=48) * (sect_size=512) = 3,932,160 bytes =
7,680 sectors:
For Windows, you might enjoy:
- "DD for Windows" by John Newbigin and chrysocome[1]
- "ImDisk Virtual Disk Driver" and "Zero and Random Device Driver" by
Olof
2015 Jul 25
2
[LLVMdev] [LLD] support for dlltool generated libs in COFF/PECOFF
>
> For example the gnu linker provides the section with the stub code and the
> offset for injection.
Meant to say dlltool here not gnu linker :)
On Sat, Jul 25, 2015 at 11:17 AM, Martell Malone <martellmalone at gmail.com>
wrote:
> Hey guys,
>
> So I was able to modify dlltool to produce the exact same layout as
> lib.exe with the same section numbers etc.
>
2013 Oct 16
9
puppetdb, foreman, one particular node has a problem
I have about 75 nodes now and recently added 6 of them. They are all
running Debian squeeze and all have exactly the same Puppet packages. One
is giving an error when I try to enroll it:
Failed to import facts: PG::UndefinedColumn: ERROR: column "environment"
of relation "hosts" does not exist
LINE 1: ...d", "created_at", "disk",
2016 Aug 25
2
[PATCH] build: Add common CLEANFILES and DISTCLEANFILES to common-rules.mk.
...cal order.
operations = \
abrt_data \
@@ -217,6 +211,4 @@ depend: .depend
endif
-DISTCLEANFILES = .depend
-
.PHONY: depend docs
diff --git a/test-data/Makefile.am b/test-data/Makefile.am
index 0c37c97..93d094a 100644
--- a/test-data/Makefile.am
+++ b/test-data/Makefile.am
@@ -89,7 +89,7 @@ image_files = \
noinst_DATA = test.iso
-CLEANFILES = test.iso
+CLEANFILES += test.iso
test.iso: $(images_files)
rm -rf d
diff --git a/test-data/blank-disks/Makefile.am b/test-data/blank-disks/Makefile.am
index 2464869..aa20358 100644
--- a/test-data/blank-disks/Makefile.am
+++ b/test-data/blank-disks...