- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 401 for EXAMPLE (0.04 sec)
-
docs/en/docs/tutorial/schema-extra-example.md
The keys of the `dict` identify each example, and each value is another `dict`. Each specific example `dict` in the `examples` can contain: * `summary`: Short description for the example. * `description`: A long description that can contain Markdown text. * `value`: This is the actual example shown, e.g. a `dict`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 9.6K bytes - Viewed (0) -
docs/uk/docs/tutorial/schema-extra-example.md
До цього підтримувався лише ключ `example` з одним прикладом. Він все ще підтримується в OpenAPI 3.1.0, але є застарілим і не входить до стандарту JSON Schema. Тому рекомендується перейти з `example` на `examples`. 🤓 Більше про це можна прочитати в кінці цієї сторінки. /// ## Додаткові аргументи `Field`
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Jun 09 19:35:48 UTC 2025 - 13.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ContentNotFoundExceptionTest.java
// Test with normal URLs String parentUrl = "http://example.com/parent"; String url = "http://example.com/child"; ContentNotFoundException exception = new ContentNotFoundException(parentUrl, url); assertNotNull(exception); assertEquals("Not Found: http://example.com/child Parent: http://example.com/parent", exception.getMessage()); assertNull(exception.getCause()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ProtocolHelperTest.java
assertFalse(protocolHelper.isValidWebProtocol("ftp://example.com")); assertFalse(protocolHelper.isValidWebProtocol("file://example.com")); assertFalse(protocolHelper.isValidWebProtocol("smb://example.com")); assertFalse(protocolHelper.isValidWebProtocol("ldap://example.com")); assertFalse(protocolHelper.isValidWebProtocol("example.com")); assertFalse(protocolHelper.isValidWebProtocol(""));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 21.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/cors/CorsHandlerFactoryTest.java
// Setup String origin = "https://example.com"; TestCorsHandler handler = new TestCorsHandler("example-handler"); // Execute corsHandlerFactory.add(origin, handler); CorsHandler result = corsHandlerFactory.get(origin); // Verify assertNotNull(result); assertEquals(handler, result); assertEquals("example-handler", ((TestCorsHandler) result).getName()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.1K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlTest.java
assertNotNull(Curl.get("https://secure.example.com/path?param=value")); assertNotNull(Curl.post("http://api.example.com/v1/resource")); assertNotNull(Curl.put("ftp://files.example.com/upload")); assertNotNull(Curl.delete("http://localhost:8080/delete")); assertNotNull(Curl.head("https://cdn.example.com/assets/file.js")); assertNotNull(Curl.options("http://cors.example.com/api"));
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 8.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/VirtualHostHelperTest.java
return new Tuple3[] { new Tuple3<>("Host", "Example.Com", "site1") }; } }); MockletHttpServletRequest request = getMockRequest(); request.addHeader("Host", "example.com"); String key = virtualHostHelper.getVirtualHostKey(); assertEquals("site1", key); request.addHeader("Host", "EXAMPLE.COM");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java
data = "<img src=\"http://example/foo.jpg\">" // + "<img src=\"http://example/bar.jpg\">"; expected = "http://example/foo.jpg"; assertGetThumbnailUrl(data, expected); data = "<img src=\"http://example/foo.jpg\">" // + "<img src=\"http://example/bar.jpg\" width=\"100\" height=\"100\">"; expected = "http://example/bar.jpg"; assertGetThumbnailUrl(data, expected);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 41.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java
url = "http://example.com/"; exp = "http://example.com/"; assertEquals(exp, transformer.decodeUrlAsName(url, false)); url = "http://example.com/index.html"; exp = "http://example.com/index.html"; assertEquals(exp, transformer.decodeUrlAsName(url, false)); url = "http://example.com/" + encodeUrl("テスト ") + ".html";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 11K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlRequestTest.java
Proxy proxy = Proxy.NO_PROXY; CurlRequest result = request.proxy(proxy); assertSame(request, result); // Fluent API assertSame(proxy, request.proxy()); } @Test public void testEncodingMethod() { CurlRequest request = new CurlRequest(Method.GET, "https://example.com"); String encoding = "ISO-8859-1";
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 8.8K bytes - Viewed (0)