Results for validation
I want my variables contains only character in C without anything else like special characters or number and not empty. What is the best solution for ...
I want to remove parameter "minimum" from autogenerated swagger documentation I use the springdoc library to automatically generate swagger documentat...
This is the return statement of my lambda function: return { statusCode: 201, body: JSON.stringify({item: 'apple', price: 1}), } How can I u...
I upgraded from Spring Boot (Data) 3.1.5 to 3.2.0. Several of my queries in the Repositories throw exceptions now on application start in the validati...
Trying to conenct postgresql with langchain.llm used - Azureopenai from langchain.llms import AzureOpenAI llms = AzureOpenAI( temperature=0,deployment...
What I would like to do: Set a cell value. Check with a program if cell values conform to data validation rules. I could extract all the information...
I have two select statements that query from two different tables select count(1) from ACCOUNTS WHERE CUSTOMER_ID=100206 HAVING COUNT (*) = 0 select A...
Using fluent validations, I want to validate the following class: public class Saloon{ public SaloonTypeEnum SaloonType {get; set;} public Percentage2...
Training Vs Validation curve - training loss and validation loss are converging but the losses are approaching 0 I was expecting that validation loss ...
I have a text field for the user to pick a minutes+seconds time duration. I am trying to use a IMask object for restricting the input using a regex. T...
To set the context: I have a yaml oapi file I used the OpenAPI generator to create C# classes Some properties have [IsRequired = true] attributes Wh...
I am designing a component in Blazor (.net 8) which contains a number of child components. See the image below: The CreateBill component is the main...
I'm trying to build an api for an iOS app I'm working on. I'm using Next.js 14 for it and I got it working, for the most part but I'm a bit puzzled on...
I have the following schema in Zod that requires a valid string input. However, I'm not sure the validation is actually kicking in? Just wondering wha...
I used to validate the response body against the piece of the OpenAPI schema (I parsed the schema file and took only the needed response schema). But ...
I'm currently working on a form validation using Zod with react hook forms, and I'm facing a challenge with implementing conditional validation for a ...
I have a budget entity in my domain which can be closed by the user if the budget is open. This means if the budget opens today and closes in seven da...
I need to add validation for a dynamic array whose elements can be strings or subsequent arrays containing strings, but I can't find a way to save thi...
I'm developing a flutter app with firebase, and I have a user registration form with email validation page. I want to check if the entered email alrea...
have a project that I am studying, it consists of a small mvc web store with asp core. I followed the course, however, the version used in the videos ...
I have a project that I am studying, it consists of a small ASP.NET Core MVC app. I followed the course, however, the version used in the videos is 2....
I'm using laravel validation for a date field like this: Validator::make($shipment, [ 'collection_date' => 'required|date', ... and I'...
I have now spent more than a few hours on this issue and I felt that it was time to reach out for some assistance because clearly I am missing some fu...
How can I force a field to have a default value during server-side validation of a razor page? I tried with this example code but it doesn't work: wha...
I created a table with the following code: CREATE TABLE my_table( id BIGSERIAL, PRIMARY KEY(id) ) PARTITION BY RANGE (id); CREATE TABLE my_ta...
How do I undo the most recent local commits in Git?
How can I remove a specific item from an array in JavaScript?
How do I delete a Git branch locally and remotely?
How can I find all files containing a specific text (string) on Linux?
How to find all files containing specific text (string) on Linux?
How do I revert a Git repository to a previous commit?
How do I create an HTML button that acts like a link?
How do I check out a remote Git branch?