- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 1,129 for examples (0.21 sec)
-
okhttp/src/commonTest/kotlin/okhttp3/internal/publicsuffix/ConfiguredPublicSuffixDatabaseTest.kt
.writeUtf8("square.com\n") .readByteString() assertThat(publicSuffixDatabase.getEffectiveTldPlusOne("example.com")) .isEqualTo("example.com") assertThat(publicSuffixDatabase.getEffectiveTldPlusOne("foo.example.com")) .isEqualTo("example.com") assertThat(publicSuffixDatabase.getEffectiveTldPlusOne("foo.bar.square.com")) .isEqualTo("bar.square.com")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 3.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/DataStoreCrawlingExceptionTest.java
public void test_constructor_withUrlMessageAndException() { // Test with URL, message, and exception (abort defaults to false) String url = "http://example.com/test"; String message = "Test error message"; Exception cause = new RuntimeException("Root cause"); DataStoreCrawlingException exception = new DataStoreCrawlingException(url, message, cause);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
dataMap1.put("url", "http://example.com/test1"); indexUpdateCallback.store(paramMap, dataMap1); assertEquals(1, indexingHelper.sendDocumentsCalled); // Add second document - should trigger indexing again Map<String, Object> dataMap2 = new HashMap<>(); dataMap2.put("url", "http://example.com/test2"); indexUpdateCallback.store(paramMap, dataMap2);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
docs/en/docs/management-tasks.md
* The translation doesn't seem to change the original content, for example with obvious additional documentation sections. * The translation doesn't use different Markdown structures, for example adding HTML tags when the original didn't have them. * The "admonition" sections, like `tip`, `info`, etc. are not changed or translated. For example: ``` /// tip This is a tip. /// ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 14.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.java
boolean result2 = indexUpdateCallback.isUrlCrawlable(paramMap, "http://example.com/private/data.html"); boolean result3 = indexUpdateCallback.isUrlCrawlable(paramMap, "http://example.com/temp/cache.html"); boolean result4 = indexUpdateCallback.isUrlCrawlable(paramMap, "http://example.com/public/index.html"); assertFalse(result1);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 23:31:00 UTC 2025 - 7.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java
+ "<good_urls>https://example.com</good_urls>" + "<bad_urls>https://example.com/admin</bad_urls>" + "</collection></collections>" + "<globalparams><start_urls>https://example.com</start_urls></globalparams>" + "</config></eef>"; parser.parse(new InputSource(new StringReader(xmlWithCollection)));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.4K bytes - Viewed (0) -
docs/sts/web-identity.md
possible that after redirection the browser may land on a different MinIO server. For example, the domain `console.minio.example.org` may resolve to `console-X.minio.example.org`, where `X` is `1`, `2`, `3` or `4`. For the login to work, if the user first landed on `console-1.minio.example.org`, they must be redirected back to the same place after logging in at the OpenID provider's web-page. To ensure this, set the `MINIO_IDENTITY_OPENID_REDIRECT_URI_DYNAMIC=on` parameter - this lets MinIO set the redirect...
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.9K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HpackTest.kt
bytesIn.writeUtf8("www.example.com") } private fun checkReadFirstRequestWithoutHuffman() { assertThat(hpackReader!!.headerCount).isEqualTo(1) // [ 1] (s = 57) :authority: www.example.com val entry = hpackReader!!.dynamicTable[readerHeaderTableLength() - 1]!! checkEntry(entry, ":authority", "www.example.com", 57) // Table size: 57
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 38.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/Kerb5AuthenticatorTest.java
assertNull(auth.getUser()); auth.setUser(""); assertEquals("", auth.getUser()); // Realm accessors assertNull(auth.getRealm()); auth.setRealm("EXAMPLE.COM"); assertEquals("EXAMPLE.COM", auth.getRealm()); // Service accessors assertEquals("cifs", auth.getService()); auth.setService(""); assertEquals("", auth.getService());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/DuplicateHostHelperTest.java
host1.setRegularName("www.example.com"); host1.setDuplicateHostName("example.com"); helper.duplicateHostList.add(host1); DuplicateHost host2 = new DuplicateHost(); host2.setRegularName("secure.example.com"); host2.setDuplicateHostName("www.example.com"); helper.duplicateHostList.add(host2); String url = "http://example.com/test";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 6.6K bytes - Viewed (0)