- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 340 for VALID (0.03 seconds)
-
src/main/resources/fess_message_id.properties
# Hibernate Validator # ------------------- constraints.CreditCardNumber.message = {item} adalah nomor kartu kredit yang tidak valid. constraints.EAN.message = {item} adalah barcode {type} yang tidak valid. constraints.Email.message = {item} bukan alamat email yang valid. constraints.Length.message = Panjang {item} harus antara {min} dan {max}. constraints.LuhnCheck.message = Checksum Luhn Modulo 11 dari {value} tidak benar.Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 07 14:12:58 GMT 2025 - 11.8K bytes - Click Count (0) -
cmd/signature-v4-parser_test.go
strings.Join([]string{ // generating a valid credential. generateCredentialStr( "access key", sampleTimeStr, "us-west-1", "s3", "aws4_request"), // valid SignedHeader. "SignedHeaders=host;x-amz-content-sha256;x-amz-date", // valid Signature field. // a valid signature is of form "Signature=" "Signature=abcd", }, ","),
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Oct 10 18:57:35 GMT 2025 - 27.8K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ArchiveExtractorErrorHandlingTest.java
// Add a valid text entry final ZipEntry entry1 = new ZipEntry("valid.txt"); zos.putNextEntry(entry1); zos.write("Valid content テスト".getBytes("UTF-8")); zos.closeEntry(); // Add another valid entry final ZipEntry entry2 = new ZipEntry("another.txt"); zos.putNextEntry(entry2);Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 12.6K bytes - Click Count (0) -
tests/test_serialize_response_model.py
class Item(BaseModel): name: str = Field(alias="aliased_name") price: Optional[float] = None owner_ids: Optional[list[int]] = None @app.get("/items/valid", response_model=Item) def get_valid(): return Item(aliased_name="valid", price=1.0) @app.get("/items/coerce", response_model=Item) def get_coerce(): return Item(aliased_name="coerce", price="1.0")
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 21:25:59 GMT 2025 - 4.2K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/CharUtilTest.java
public void test_isUrlChar_extendedAscii() { // Test extended ASCII characters (not valid URL chars without encoding) assertFalse(CharUtil.isUrlChar('\u00A0')); // non-breaking space assertFalse(CharUtil.isUrlChar('\u00FF')); // ÿ } public void test_isUrlChar_unicode() { // Test Unicode characters (not valid URL chars without encoding) assertFalse(CharUtil.isUrlChar('\u3042')); // あ (Hiragana)
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 5.6K bytes - Click Count (0) -
cmd/object-api-options.go
default: apiErr = toAPIError(ctx, vErr) } valid = false return opts, valid } opts.MaxParts, err = parseIntHeader(bucket, object, r.Header, xhttp.AmzMaxParts) if err != nil { apiErr = toAPIError(ctx, err) argumentName = strings.ToLower(xhttp.AmzMaxParts) valid = false return opts, valid } if opts.MaxParts == 0 { opts.MaxParts = maxPartsList }
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 14.3K bytes - Click Count (0) -
internal/jwt/parser.go
func (c *StandardClaims) SetAccessKey(accessKey string) { c.Subject = accessKey c.AccessKey = accessKey } // Valid - implements https://godoc.org/github.com/golang-jwt/jwt#Claims compatible // claims interface, additionally validates "accessKey" fields. func (c *StandardClaims) Valid() error { if err := c.StandardClaims.Valid(); err != nil { return err } if c.AccessKey == "" && c.Subject == "" {
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 14.1K bytes - Click Count (0) -
tests/test_serialize_response.py
app = FastAPI() class Item(BaseModel): name: str price: Optional[float] = None owner_ids: Optional[list[int]] = None @app.get("/items/valid", response_model=Item) def get_valid(): return {"name": "valid", "price": 1.0} @app.get("/items/coerce", response_model=Item) def get_coerce(): return {"name": "coerce", "price": "1.0"}
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 21:25:59 GMT 2025 - 1.4K bytes - Click Count (0) -
tests/test_tutorial/test_body_nested_models/test_tutorial008.py
data = [{"url": "not a valid url", "name": "Example"}] response = client.post("/images/multiple", json=data) assert response.status_code == 422, response.text assert response.json() == { "detail": [ { "loc": ["body", 0, "url"], "input": "not a valid url", "msg": "Input should be a valid URL, relative URL without a base",Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Fri Dec 26 10:43:02 GMT 2025 - 5.4K bytes - Click Count (0) -
src/test/java/jcifs/util/InputValidatorTest.java
@CsvSource({ "50, 0, 100, true", "0, 0, 100, true", "100, 0, 100, true", "-1, 0, 100, false", "101, 0, 100, false" }) void testRangeValidation(long value, long min, long max, boolean valid) { if (valid) { assertDoesNotThrow(() -> InputValidator.validateRange(value, min, max, "test")); } else {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 11.9K bytes - Click Count (0)