- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 45 for setKey (0.04 sec)
-
src/test/java/org/codelibs/core/crypto/CachedCipherTest.java
} @Test public void testDifferentKeys() { final CachedCipher cipher1 = new CachedCipher(); cipher1.setKey("key1"); final CachedCipher cipher2 = new CachedCipher(); cipher2.setKey("key2"); final String original = "Hello World"; final String encrypted1 = cipher1.encryptText(original);Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsCrawlingInfoParam.java
public void setCreatedTime(Long value) { registerModifiedProperty("createdTime"); this.createdTime = value; } public String getKey() { checkSpecifiedProperty("key"); return convertEmptyToNull(key); } public void setKey(String value) { registerModifiedProperty("key"); this.key = value; } public String getValue() {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralDataInternal.java
void setLink(String link); /** * Get the cache key for this referral * * @return cache key */ String getKey(); /** * Set the cache key for this referral * * @param key * cache key */ void setKey(String key); /** * Set the cache map for this referral * * @param map the cache map to associate with this referral
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/CrawlingInfoParamDbm.java
(et, vl) -> ((CrawlingInfoParam) et).setCreatedTime(DfTypeUtil.toLong(vl)), "createdTime"); setupEpg(_epgMap, et -> ((CrawlingInfoParam) et).getKey(), (et, vl) -> ((CrawlingInfoParam) et).setKey(DfTypeUtil.toString(vl)), "key"); setupEpg(_epgMap, et -> ((CrawlingInfoParam) et).getValue(), (et, vl) -> ((CrawlingInfoParam) et).setValue(DfTypeUtil.toString(vl)),
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 8.9K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/UrlQueueImplTest.java
public void test_idGetterSetter() { // Test ID getter/setter with Long UrlQueueImpl<Long> queue = new UrlQueueImpl<>(); queue.setId(123L); assertEquals(Long.valueOf(123L), queue.getId()); queue.setId(null); assertNull(queue.getId()); } public void test_idWithStringType() { // Test ID getter/setter with String UrlQueueImpl<String> queue = new UrlQueueImpl<>();Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:29:22 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/exbhv/SearchLogBhv.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/PropertyDesc.java
*/ boolean hasReadMethod(); /** * Returns the setter method. * * @return the setter method */ Method getWriteMethod(); /** * Returns whether the property has a setter method. * * @return whether the property has a setter method */ boolean hasWriteMethod(); /**Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/Smb2LeaseKeyTest.java
@Test @DisplayName("Should generate random lease key with correct size") void testRandomLeaseKeyGeneration() { Smb2LeaseKey key = new Smb2LeaseKey(); assertNotNull(key.getKey()); assertEquals(16, key.getKey().length); assertFalse(key.isZero()); } @Test @DisplayName("Should create lease key from byte array") void testLeaseKeyFromBytes() {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 21 00:16:17 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/GeoInfo.java
StreamUtil.stream(request.getParameterMap()) .of(stream -> stream.filter(e -> e.getKey().startsWith("geo.") && e.getKey().endsWith(".point")).forEach(e -> { final String key = e.getKey(); for (final String geoField : geoFields) { if (key.startsWith("geo." + geoField + ".")) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/CrawlingInfoParam.java
final Locale locale = ComponentUtil.getRequestManager().getUserLocale(); final String message = ComponentUtil.getMessageManager().getMessage(locale, "labels.crawling_info_" + getKey()); if (message == null || message.startsWith("???")) { return getKey(); } return message; } @Override public String toString() {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.4K bytes - Viewed (0)