- Sort Score
- Result 10 results
- Languages All
Results 851 - 860 of 1,692 for Id (0.01 sec)
-
src/test/java/org/codelibs/fess/it/admin/dict/KuromojiTests.java
@Override protected String getDictType() { return DICT_TYPE; } @Override protected Map<String, Object> createTestParam(int id) { final Map<String, Object> requestBody = new HashMap<>(); final String keyProp = NAME_PREFIX + id; requestBody.put(KEY_PROPERTY, keyProp); requestBody.put("segmentation", "segment"); requestBody.put("reading", "reading");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java
@Test public void testCreateSuggestTextId() { // Test normal text String text = "test text"; String id = SuggestUtil.createSuggestTextId(text); assertNotNull(id); assertEquals(Base64.getEncoder().encodeToString(text.getBytes(CoreLibConstants.CHARSET_UTF_8)), id); // Test empty text String emptyText = ""; String emptyId = SuggestUtil.createSuggestTextId(emptyText);
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 18.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
long id = 0; if (tmp.startsWith("0x")) { id = Long.parseLong(tmp.substring(2), 16); } else { id = Long.parseLong(tmp); } this.identifier_authority = new byte[6]; for (int i = 5; id > 0; i--) { this.identifier_authority[i] = (byte) (id % 256); id >>= 8; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryManager.java
} /** * Retrieves a specific dictionary file by its ID. * * @param id the unique identifier of the dictionary file to retrieve * @return an OptionalEntity containing the dictionary file if found, empty otherwise */ public OptionalEntity<DictionaryFile<? extends DictionaryItem>> getDictionaryFile(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0) -
docs/en/overrides/main.html
{% extends "base.html" %} {% block announce %} <div class="announce-wrapper"> <div id="announce-left"> <div class="item"> <a class="announce-link" href="https://x.com/fastapi" target="_blank"> <span class="twemoji"> {% include ".icons/fontawesome/brands/x-twitter.svg" %} </span> Follow <strong>@fastapi</strong> on <strong>X (Twitter)</strong> to stay updated </a> </div> <div class="item">
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 15:19:49 UTC 2025 - 4.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResult.java
* * @return the identifier */ IDTYPE getId(); /** * Sets the identifier of the access result. * * @param id the identifier */ void setId(IDTYPE id); /** * Returns the session identifier. * * @return the session identifier */ String getSessionId(); /** * Sets the session identifier.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 5.2K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/SessionReuseTest.kt
connection: Connection, ) { val sslSocket = connection.socket() as SSLSocket sessionIds.add( sslSocket.session.id .toByteString() .hex(), ) } }, ), ).sslSocketFactory(sslSocketFactory, handshakeCertificates.trustManager)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 18 12:28:21 UTC 2025 - 6K bytes - Viewed (1) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/UrlFilterTest.java
// Should handle null session ID gracefully assertNotNull(urlFilter); } /** * Test initialization with empty session ID */ public void test_init_withEmptySessionId() { urlFilter.init(""); // Should handle empty session ID gracefully assertNotNull(urlFilter); } /** * Test adding a single include pattern */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 19K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/dict/admin_dict.jsp
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 4K bytes - Viewed (0)