search for: serial_numbers

Displaying 20 results from an estimated 23 matches for "serial_numbers".

Did you mean: serial_number
2006 Mar 21
1
Form Validation
Hi, I''ve got an interesting one here :) I have a form with three fields : serial_number initial surname now, if serial_number is entered, it must be between 1 and 64000. If it''s filled in, the other two fields must be blank. If serial_number is left blank then the other two boxes must be filled. Any suggestions? -- Posted via http://www.ruby-forum.com/.
2011 Nov 24
0
legacy MTI schema
Hi all, In a legacy ''immutable'' schema I have MTI inheritance setting: <<TABLE systems>> id<<PK>> ( NOT database generated) installation_date manufacturer serial_number <<TABLE lifters>> id<<PK>><<FK>> ( NOT database generated ) max_weight drive In my model I have implemented the semantic of inheritance between
2006 Jan 13
0
Form element that is not an AR object attribute
...table products (id int not null auto_increment, name varchar(255), primary key (id)); create table batches (id int not null auto_increment, product_id int not null, quantity int not null, price decimal(10,2) not null, primary key (id), foreign key (product_id) references products(id)); create table serial_numbers (id int not null auto_increment, batch_id int not null, sn varchar(255), status char(1), primary key (id), foreign key (batch_id) references batches(id)); app/models ----------------- class Batch < ActiveRecord::Base belongs_to :product has_many :serial_numbers end class SerialNumber <...
2011 Apr 27
1
Filtering feature dump_filter
Good morning, Now that hdt is capable of dumping system information it would be nice if there was some sort of filtering system which filters out unwanted information prior to dumping output. For example one could add the command: append nomenu auto=dump mac_address serial_number bios_version; And ultimately dumping output to a plain text file like: mac_address : 00:11:22:33:44 serial_number :
2018 Aug 29
1
Panic / EL6 / KVM / kernel-2.6.32-754.2.1.el6.x86_64
Am 29.08.2018 um 23:46 schrieb Stephen John Smoogen <smooge at gmail.com>: > > On Wed, 29 Aug 2018 at 17:41, Leon Fauster via CentOS <centos at centos.org> wrote: >> Since the update from kernel-2.6.32-754.2.1.el6.x86_64 >> to kernel-2.6.32-754.3.5.el6.x86_64 I can not boot my >> KVM guests anymore!? The workstation panics immediately! >> >> I
2018 Aug 29
7
Panic / EL6 / KVM / kernel-2.6.32-754.2.1.el6.x86_64
Since the update from kernel-2.6.32-754.2.1.el6.x86_64 to kernel-2.6.32-754.3.5.el6.x86_64 I can not boot my KVM guests anymore!? The workstation panics immediately! I would not have expected this behavior now (last phase of OS). It was very robust until now (Optiplex Workstation). I see some KVM related lines in the changelog.diff. Before swimming upstream: Does some one have problems
2006 Jun 18
2
Table Relationship for Select option list
I''m pretty new to developing web apps and need help with my database table design. I''m working on an inventory application to manage WLAN hardware. I''ve created a table to hold information on each device with the following (model refers to the manufacturer''s model number): create table devices ( id int not null auto_increment,
2017 Nov 16
2
USB Serial Ports
We have several CentOS 6 systems that are used in various configurations of test equipment.? One of the primary functions of these systems is the connectivity to serial ports of some operational systems that have serial port control requirements.? Lack of interface bus slots led us to the use of USB connected serial ports on these CentOS 6 systems. We first used these USB connected serial ports
2006 Sep 07
1
test_metaflac fails in make check for flac 1.1.2 after --add-padding is performed
Josh, I applied this patch and all the "make check" tests passed (but I do not have valgrind and I did not use --enable-exhaustive-tests during configure, so it isn't all the tests). Do you see anything suspicious about it? --- flac-1.1.2.oldBuild/src/flac/decode.c 2005-01-24 20:13:46.000000000 -0800 +++ flac-1.1.2/src/flac/decode.c 2006-09-06 23:36:26.000000000 -0700
2006 Jul 20
5
How can I make has_many prevent a delete that would lead to orphans?
e.g. class Asset < ActiveRecord::Base validates_presence_of :asset_number, :make, :model, :location, :name, :serial_number validates_numericality_of :asset_number validates_uniqueness_of :asset_number belongs_to :user belongs_to :location belongs_to :asset_type, :foreign_key => ''type_id'' end class Location < ActiveRecord::Base validates_presence_of :name
2017 Nov 17
0
USB Serial Ports
> -----Original Message----- > From: Chris Olson [mailto:chris_e_olson at yahoo.com] > Sent: Thursday, November 16, 2017 5:42 PM > To: CentOS Mailing List > Subject: [CentOS] USB Serial Ports > > We have several CentOS 6 systems that are used in various configurations > of test equipment.? One of the primary functions of these systems is the > connectivity to serial
2006 Jun 04
0
Re: flac with >4GB raw still does not work (CVS)
On 6/3/06, Avuton Olrich <avuton@gmail.com> wrote: ...stuff... I just ran gdb on it, when it got to the point that it goes no further I sent kill -11 and got the following (hope it helps): Core was generated by `flac -o hs.flac -0 --force-raw-format --channels=2 --bps=16 --sample-rate=44100'. Program terminated with signal 11, Segmentation fault. warning: Can't read pathname for
2013 Oct 18
0
Identity change between pkinit and TGS
Hi, I'm trying to setup the following configuration but encounter a problem. I'm not sure if it's a normal behavior for samba 4. I have a smartcard provided with a user principal name looking like serial_number at domain. The serial number is in the form of 0000-0000-0000-0000. The domain, let's say "upn.example.com", doesn't match my Samba Realm, that would be
2006 Jun 03
2
flac with >4GB raw still does not work (CVS)
I'm attempting to flac a 18GB raw file, and as per 1328191 I compiled CVS, when it gets to 4GB it doesn't continue. I've tried stracing and get no output after a certain point. I also have tried oggflac and it is no different. I configured with no options or special CFLAGS and this is on a x86 machine. Is there anything special I need to do to get this to work? I have also tried with
2014 Sep 26
0
Patch to add buffering to decoding too
I made some changes to the previous patch. I don't know why I originally didn't put the output buffering to piped output too but that is now moved to cover both file and pipe output. Additionally this patch informs the Windows filesystem in advance about the decoded size to eliminate NTFS fragmentation. On 25.9.2014 23:01, Janne Hyv?rinen wrote: > Decoding flac files is also prone
2014 Sep 26
3
Patch to add buffering to decoding too
Can you please wrap the setvbuf in _WIN32 IFDEFs too? Currently memory usage of FLAC decoding is about 1MB, so this patch is increasing memory usage tenfold, also for platforms that do not need this. It is a non-problem on my system anyway. Op 26-09-14 om 10:36 schreef Janne Hyv?rinen: > I made some changes to the previous patch. I don't know why I > originally didn't put the
2015 Sep 02
1
USB HID Spec help (passing strings)
No, just as a variable string descriptor. By ?variable string descriptor?, do you mean what is contained in the example in the App Note? I?m just asking for clarification, in case variable string descriptor is something different than shown there. The way they do the string descriptors in the example is how I have mine now. They return a size and address, but it is to something that was
2014 Sep 25
2
Patch to add buffering to decoding too
Decoding flac files is also prone to producing fragmented files. NTFS has the ability to completely avoid fragmentation if it is told the file size before hand, but that would require using special Windows-only functions. Increasing the write buffer from the default 512 bytes to 10 MB already reduces the problem tremendously. -------------- next part -------------- diff --git
2014 Sep 26
4
Patch to add buffering to decoding too
Removed buffer size increase. Only tells the filesize to Windows now. On 26.9.2014 14:08, Erik de Castro Lopo wrote: > Martijn van Beurden wrote: > >> Can you please wrap the setvbuf in _WIN32 IFDEFs too? Currently >> memory usage of FLAC decoding is about 1MB, so this patch is >> increasing memory usage tenfold, also for platforms that do not >> need this. It is a
2006 Aug 28
2
test_metaflac fails in make check for flac 1.1.2 after --add-padding is performed
doing "make check" on flac-1.1.2, I get a segmentation fault ././test_metaflac.sh: line 51: 17370 Segmentation fault flac $* when running this portion of the test/test_metaflac.sh script: (set -x && run_metaflac --preserve-modtime --add-padding=12345 $flacfile) check_exit check_flac <---------------- where the segfault happens All other tests in