search for: validation

Displaying 20 results from an estimated 35854 matches for "validation".

2019 Dec 27
0
bind problems
...org/DS: no valid signature found 27-Dec-2019 23:36:29.360 dnssec: info: validating org/DS: no valid signature found 27-Dec-2019 23:36:29.387 dnssec: info: validating org/DS: no valid signature found .... and really many lines as above. This validating happens even when dnssec-enable no; and dnssec-validation and dnssec-lookaside are commented out any idea? -- best regards Helmut Drodofsky
2010 May 26
1
how to Store loop output from a function
...frame[-at, "var"])) train.cc <- n.cc[-out.fold.c, ] valid.cc <- n.cc[out.fold.c, ] train.nn <- n.nn[-out.fold.n,] valid.nn <- n.nn[out.fold.n,] train<-rbind(train.cc, train.nn) #training data valid<-rbind(valid.cc, valid.nn) # validation data #creat data set contains the following variables myvar<-names(gh5_h) %in% c(varr, "num_cell","num_genes","position", "acid_per", "base_per", "charge_per", "hydrophob_per", "polar_per", "out")...
2006 Jul 21
10
why validation on server side
hi, i have noticed that the validations in RoR happen at server side mostly what sites do is using javascript they validate user information there... whats the point of doing it at the server side is it that loading of javascript file in a browser makes a response to client slow and validation at server side offsets that....????? an...
2010 Oct 01
1
virt-xml-validate b0rked?
It seems that virt-xml-validate doesn't validate what *has* to be valid XML, that generated by virsh dumpxml against a running domain: [root at etc752365a ~]# virsh list Id Name State ---------------------------------- 2 rhel55 running 3 rhel53 running [root at etc752365a ~]# virsh dumpxml rhel55 > foo.xml [root at etc752365a ~]#
2006 Aug 14
2
Plugins: Validation Reflection and Client-Side Validation
I''ve just put two plugins on RubyForge. Included below are the READMEs. You can get the plugins at svn://rubyforge.org//var/svn/valirefl/validation_reflection/trunk svn://rubyforge.org//var/svn/clientsidevali/client_side_validation/trunk Michael Validation Reflection ===================== Version 0.2, 2006-08-06 This plugin adds reflective access to validations - ModelClass.reflect_on_all_validations - ModelClass.reflect_on_validations...
2020 Mar 25
2
CentOS 6.10 bind DNSSEC issues
...@0xb473dc48: dlv.isc.org DNSKEY: please check the 'trusted-keys' for 'dlv.isc.org' in named.conf. No issues with our CentOS 7.7.1908 bind DNS servers. To fix I had to set the following in /etc/named.conf and restart the named service. ??????? dnssec-enable no; ??????? dnssec-validation no; Anyone else had this issue? Is there and updated key that is needed in CentOS 6.10 version of bind so that I can turn dnssec back on. regards Tim Tim D'Cruz
2006 Mar 29
5
How to skip password validation when updating other fields?
Besides the hashed password, which is saved to db, I have two password-attributes in my User model: attr_accessor :password, :password_confirmation I have validations on these attributes, and I need them to work both on create and update, since I have pages for changing and resetting the password. Now when I want to update just the user''s login name, I guess I have the next options: 1) user = User.find(session[:user_id]) user.login = params[:login...
2017 Oct 26
1
[PATCH] builder: ignore spaces after repo identifiers (RHBZ#1506511)
--- builder/index-scan.l | 5 +++-- builder/test-virt-index-validate-good-4 | 3 +++ builder/test-virt-index-validate.sh | 1 + 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 builder/test-virt-index-validate-good-4 diff --git a/builder/index-scan.l b/builder/index-scan.l index bdb474b33..49dad72bc 100644 --- a/builder/index-scan.l +++
2008 Nov 10
10
[LLVMdev] Validating LLVM
...enge: testing and stability of LLVM between releases. Please take a look and send feedback toi the list. I'd like to get the process moving early in the 2.4 cycle. Thanks for your input and support. -Dave -------------- next part -------------- LLVM Validation Proposal ------------------------ *Motivation* LLVM Top of Trunk (ToT) is fairly unstable. It is common for tests to break on a daily basis. This makes tracking the LLVM trunk difficult and often undesireable for those needing stability. Such needs come from a variety of situations: integratin...
2002 May 24
1
What's Happening
...ing a Win 2000 share. Actually, there are a bunch of tasks accessing the same share, complete with file locking, etc. Any docs on what that error code means? ...Thanks, ...Kenneth smb_get_length: recv error = 113 smb_trans2_request: result=-113, setting invalid smb_file_write: syndex/csafe.log validation failed, error=4294967291 smb_file_write: syndex/csafe.log validation failed, error=4294967291 smb_file_write: syndex/csafe.log validation failed, error=4294967291 smb_file_write: syndex/cdrsfe.log validation failed, error=4294967291 smb_file_write: syndex/cdrsfe.log validation failed, error=4294967...
2006 Aug 15
7
Trying to Overide Class Object Methdos For Testing
Hi, I thought I had a handle on the whole singleton class thing but now I''m not too sure. I have a class definition: class ValidationMaster def validate(params) # complex and time consuming validation # returns true on success, raises Exception # on failure end end Okay, so when I''m running my functional tests within rails, I want to be able to control how the validate(params) method behaves. So, I'...
2006 Jan 13
1
validating without saving
...p.valid? NoMethodError: undefined method `field'' for #<Post:0x407b6050> from /usr/local/lib/ruby/gems/1.8/gems/activerecord-1.13.2/lib/active_record/base.rb:1501:in `method_missing'' from /usr/local/lib/ruby/gems/1.8/gems/activerecord-1.13.2/lib/active_record/validations.rb:294:in `send'' from /usr/local/lib/ruby/gems/1.8/gems/activerecord-1.13.2/lib/active_record/validations.rb:294:in `validates_each'' from /usr/local/lib/ruby/gems/1.8/gems/activerecord-1.13.2/lib/active_record/validations.rb:293:in `each'' from /us...
2005 Apr 23
7
Validation question
Hi all, Is there a way to invoke validations at times other than save, create and update? I know that I can do this by writing my own validation checks using errors.add_[blah], but I''d like to leverage the existing validation code. What I have is two sets of fields in a record, set A and set B. Both sets must be validated on r...
2009 Aug 17
2
S4: inheritance of validity methods?
Dear Developers, In current implementation of validity method, objects are first coerced to superclass (slots are striped). Thus, it is not possible to write validity method which would perform some checks on children slots. Say, I want to check if number of slots in a class is equal to "n": setClass("A", representation(a="numeric", n="integer"),
2003 Feb 24
5
Bug in Shorewall check?
I made a boo boo in my config and put in this rule #PPTP DNAT net:213.67.241.162/217.209.46.204/32 loc:192.168.221.200 tcp 1723 DNAT net:213.67.241.162/32,217.209.46.204/32 loc:192.168.221.200 47 - And the the following happened.. and I wonder why it didn''t complain? I am sure I am just misunderstanding some doc
2014 Apr 03
5
[PATCH 0/3] builder: Add test of virt-index-validate.
Somewhat ineffective test of virt-index-validate.
2006 Jun 01
9
@model.errors.empty? => true; @model.valid? => false
Hi, So, how can the situation described in the subject come to be? In other words, what could be invalidating the model, yet not generating an error? thanks, jh ps. here''s the breakpoint session paste: irb(#<#<Class:0xb72eec00>:0xb72eeb10>):003:0> @project.errors.empty? => true irb(#<#<Class:0xb72eec00>:0xb72eeb10>):004:0> @project.valid? => false
2020 Mar 25
0
CentOS 6.10 bind DNSSEC issues
..._64 seems to have expired and there does not appear to be a new bind-9.8.2 RPM with a new key. I guess you can *manually* fetch a new key (look in the installed /etc/named.iscdlv.key file) OR You can just disable dnssec, by commenting out these lines: dnssec-enable yes; dnssec-validation yes; dnssec-lookaside auto; /* Path to ISC DLV key */ bindkeys-file "/etc/named.iscdlv.key"; and restarting named. > this afternoon. > > At 16:26 (GMT) had alerts for DNS failures against our CentOS 6.10 bind &g...
1999 Dec 13
0
Logon scripts w/samba
I have a logon script for windows clients to preform net time w/my samba server when they logon. The script is called gerry.bat and it is located in the logon directory. But, when any user logs on.... The script is never called. I've attached my smb.conf file. (by the way Im running RH6.0 on an AMD K-7 w/Samba 2.0.5a. THANKS IN ADVANCE!!!! # Samba config file created using SWAT # from
2014 Mar 20
2
Re: [PATCH 1/3] builder/virt-index-validate: try to cleanup in any occasion
On Thursday 20 March 2014 14:15:29 Richard W.M. Jones wrote: > On Thu, Mar 20, 2014 at 02:48:11PM +0100, Pino Toscano wrote: > > Always close the file (ignoring its result) after a parsing, and > > cleanup the parse_context object before any exit(). > > > > This eases the debugging of memory issues in the actual parser. > > --- > > > >