Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [validation]

Validation is used to check data to make sure it fits whatever required specifications are set for it. Typically Validation is used in checking input data, and in verifying data before storage.

validation
0 votes
0 answers
5 views

How to use incremental data in stored procedure fetching in a table basis on serno. For eg: latest max serno is 100 at t=0, 103 at t=1, so on

I have to include this incremental data in stored procedure to generate file from t=0 and t= time take by procedure to complete. select max(serno) from incremental_src ; o/P: 100 at t=0 o/P: 105 at t=...
Suri Suresh's user avatar
0 votes
1 answer
14 views

Blazor in .NET 8 is not validating an editform when the form has been pre-populated but works on empty form

I am having a problem with validation of an edit form in Blazor. My form looks like this: <EditForm Model="@FormModel" OnValidSubmit="@HandleValidSubmit" OnInvalidSubmit="@...
D Smith's user avatar
  • 23
0 votes
1 answer
17 views

Validation Problem For Request Class in Spring

In the application, I have an entity class named "Car" and a request class named "AddCarRequest" from which I will get information about that class via user input. @RequestMapping(&...
emir 's user avatar
-1 votes
1 answer
43 views

Best Practices for Validation in a Spring Boot Application [closed]

In my Spring Boot application, I have encountered a scenario where multiple services interact with each other, and objects passed between them need to be validated. Currently, I am using @Valid in the ...
AMZ's user avatar
  • 366
1 vote
0 answers
24 views

Custom email validation in django form

In my django Account app I have a model for Account class Account(AbstractBaseUser): wallet_value = models.DecimalField(max_digits=10, decimal_places=2, default=0.00) first_name = models....
Mahdi's user avatar
  • 21
1 vote
1 answer
27 views

How validate number length in ozzo-go

I'm trying to use ozzo for validating a phone number with fixed length of 13. how can I achieve that with ozzo? Here is my code: func RequestCheker(request api.User) error { return validation....
jexroid's user avatar
  • 175
0 votes
2 answers
46 views

YAML validation using JSON schema in C or Fortran program

I have a Fortran program that uses bind(c) and some wrappers written in C to use libyaml to read/parse a YAML file at runtime. This part of the program is a combination of Fortran and C code. ...
byrdman1982's user avatar
0 votes
1 answer
20 views

How can I customise the error messages in JSON Forms

I am using React and JSON Forms to build a form with an input that has a minimum length restriction and an email format. I am unable to generate a custom error message. The docs say to use ajv-errors,...
Kiran Anand's user avatar
1 vote
1 answer
44 views

Validation `Required` is not working with radiobtn when using ngFor in Reactive forms

I have a dynamic reactive angular form which builds forms and populates questions inside it dynamically according to questions types retrieved from the database. the problem is the required validation ...
Mohammad AM's user avatar
0 votes
0 answers
5 views

How to interpret the following pix2pix training losses?

The plots of loss functions obtained are as follows: enter image description here How to interpret this graph? I don't know this results is great or bad.. How to improve this pix2pix model? Help me ...
user26510921's user avatar
-1 votes
0 answers
29 views

Bean Validation Not Working with Hibernate Validator in Java Project

I'm encountering an issue with bean validation in my Java project where the expected constraint violations are not being caught. Below are the details of my setup: Dependencies: <dependency> ...
quarks's user avatar
  • 34.7k
0 votes
0 answers
16 views

Add custom validation before form submission in ClickFunnels

On ClickFunnels, I am trying to add some custom validation for an input field (email) as the built-in ones are not enough for my use case. The validation use an external api call to validate the email ...
Muzan's user avatar
  • 15
0 votes
1 answer
17 views

How to validate multivariate linear model using split half analysis or cross validation? [closed]

I created a multivariate linear model and am wondering how I can validate the model? The samples are environmental samples and due to a few limitations I am not able to validate by collecting more ...
Robyn O'Halloran's user avatar
0 votes
2 answers
38 views

Check whether a string value is formula or range or constant

I have a very specific use case where I need to read value input in the data validation field for each cell. If the value is a list, then the value should be stored in the string as it is. However, if ...
Himanshu Dikshit's user avatar
0 votes
0 answers
17 views

Xml Validation with two same files [closed]

I have 2 xml files that are The very same. I tested with on online tool named XML Compare. When I test the files with xsd Sheme they are valid. But when i upload them to the governement site one is ...
Kais Abid's user avatar

15 30 50 per page
1
2 3 4 5
4512