代码搜索:validate
找到约 3,608 项符合「validate」的源代码
代码结果 3,608
www.eeworm.com/read/236415/14017063
js validate.js
//=====================.net客户段验证2.01修正版===========================
//
//
// '''
// (0 0)
// +-----oOO----(_)------------+
// |
www.eeworm.com/read/133019/14057602
h validate.h
#ifndef CRYPTOPP_VALIDATE_H
#define CRYPTOPP_VALIDATE_H
#include "cryptlib.h"
#include "randpool.h"
bool ValidateAll(bool thorough);
bool TestSettings();
bool TestOS_RNG();
bool ValidateC
www.eeworm.com/read/132665/14081228
py validate.py
#!/usr/bin/python -u
import sys
import libxml2
# Memory debug specific
libxml2.debugMemory(1)
ctxt = libxml2.createFileParserCtxt("valid.xml")
ctxt.validate(1)
ctxt.parseDocument()
doc = ctxt.doc()
www.eeworm.com/read/203355/15360647
js validate.js
function checkstring(name,data,allowednull)
{
var datastr = data;
var lefttrim = datastr.search(/\S/gi);
if (lefttrim == -1) {
if (allowednull) {
return 1;
} else {
alert
www.eeworm.com/read/201666/15399055
c validate.c
/********************************************************************/
/********************************************************************/
/*****
www.eeworm.com/read/201218/15413191
m validate.m
function [cost,nmodel,output] = validate(model, Xtrain, Ytrain, Xtest, Ytest,estfct, trainfct, simfct)
% Validate a trained model on a fixed validation set
%
% >> cost = validate({X,Y,type,gam,sig2}
www.eeworm.com/read/200462/15432553
h validate.h
#ifndef CRYPTOPP_VALIDATE_H
#define CRYPTOPP_VALIDATE_H
#include "cryptlib.h"
#include "randpool.h"
bool ValidateAll(bool thorough);
bool TestSettings();
bool TestOS_RNG();
bool ValidateBas
www.eeworm.com/read/112003/15496226
c validate.c
//
// Get the velues from the dialog
//
#include
#include
#include
#include "support.h"
#include "main.h"
#include "custom.h"
// ====================================
www.eeworm.com/read/111545/15510208
h validate.h
#ifndef VALIDATE_H
#define VALIDATE_H
bool ValidateAll();
bool TestSettings();
bool ZKValidate();
bool MD2Validate();
bool MD5Validate();
bool SHAValidate();
bool HAVALValidate();
bool
www.eeworm.com/read/110974/15521096
js validate.js
function isEmail(vEMail)
{
var regInvalid=/(@.*@)|(\.\.)|(@\.)|(\.@)|(^\.)/;
var regValid=/^.+\@(\[?)[a-zA-Z0-9\-\.]+\.([a-zA-Z]{2,3}|[0-9]{1,3})(\]?)$/;
return (!regInvalid.test(vEMail)&®Va