- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 612 for examples (0.49 sec)
-
okhttp/src/jvmTest/resources/web-platform-test-toascii.json
"output": "ab--c.xn--zca" }, { "input": "ab--c.ß", "output": "ab--c.xn--zca" }, { "comment": "CheckJoiners is true", "input": "\u200D.example", "output": null }, { "input": "xn--1ug.example", "output": null }, { "comment": "CheckBidi is true", "input": "يa", "output": null }, { "input": "xn--a-yoc", "output": null
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 5.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/SsoManagerTest.java
assertNull(ssoManager.logout(user)); } public void test_logout_withValidAuthenticator() { currentSsoType = "test"; final String expectedLogoutUrl = "https://example.com/logout"; testAuthenticator.setLogoutUrl(expectedLogoutUrl); ssoManager = new SsoManager() { @Override protected String getSsoType() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.9K bytes - Viewed (0) -
dbflute_fess/dfprop/commonColumnMap.dfprop
# commonColumnMap: (Default map:{}) # # The definition of common column(contains auto set-up). # For example, the date you registered the record, # the user who updated the record and so on... # The column names are treated as case insensitive. # # The variable '$$AccessContext$$' means allcommon.AccessContext. # # Example: # map:{ # ; commonColumnMap = map:{ # ; REGISTER_DATETIME=TIMESTAMP ; REGISTER_USER=VARCHAR
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 04 22:46:31 UTC 2015 - 1.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ViewHelperTest.java
url = "http://example.com/test.html#section"; assertEquals(url, viewHelper.appendQueryParameter(document, url)); } public void test_appendHTMLSearchWord() { ViewHelper viewHelper = new ViewHelper(); viewHelper.init(); Map<String, Object> document = new HashMap<>(); String url = "http://example.com/test.html";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 27.3K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/feature_enhancement_request.yaml
- type: textarea attributes: label: Why do we need it to be improved? validations: required: true - type: textarea attributes: label: Example description: > Please provide an example usage of the feature that would be different with the improvement. render: java validations: required: true - type: textarea attributes:
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Nov 17 18:47:47 UTC 2023 - 3.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
helpUrl = systemHelper.getHelpUrl("https://example.com/{lang}/{version}/test.html"); assertEquals("https://example.com/98.76/test.html", helpUrl); } public void test_getDefaultHelpLink() { String defaultLink = systemHelper.getDefaultHelpLink("https://example.com/{lang}/{version}/test.html"); assertEquals("https://example.com/98.76/test.html", defaultLink); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 28.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/StringUtil.java
} /** * Decapitalizes a string according to JavaBeans conventions. * Note: If the first two characters are uppercase, the string will not be decapitalized. * <p> * Usage example: * </p> * * <pre> * StringUtil.decapitalize("UserId") = "userId" * StringUtil.decapitalize("ABC") = "ABC" * </pre> * * @param name
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 21.9K bytes - Viewed (0) -
README.md
implementation 'org.codelibs:curl4j:x.y.z' ``` ## Quick Start ### Synchronous request ```java import org.codelibs.curl.Curl; import org.codelibs.curl.CurlResponse; try (CurlResponse response = Curl.get("https://example.com") .param("q", "curl4j") .header("Accept", "application/json") .executeSync()) {
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:11:14 UTC 2025 - 2.5K bytes - Viewed (0) -
mockwebserver/README.md
awkward-to-reproduce situations like 500 errors or slow-loading responses. ### Example Use MockWebServer the same way that you use mocking frameworks like [Mockito](https://github.com/mockito/mockito): 1. Script the mocks. 2. Run application code. 3. Verify that the expected requests were made. Here's a complete example: ### Java ```java public void test() throws Exception {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jul 19 13:40:52 UTC 2025 - 8.1K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/SerializableTester.java
* java.io.Serializable} instance, and is thus declared an {@code Object}. For example, it might * be declared as a {@code List}. * * <p>Note also that serialization is not in general required to return an object that is * {@linkplain Object#equals equal} to the original, nor is it required to return even an object * of the same class. For example, if sublists of {@code MyList} instances were serializable,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 4.1K bytes - Viewed (0)