- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 16 for setWhy (0.03 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultClasspathTransformation.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 5.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolver.java
if (entry.equals(v)) { // unless it's an entry point. // currently processing the entry point - it should not have any entry incident edges res.getEntry().getMd().setWhy("This is a graph entry point. No links."); } } else { // fill in domain md with actual version data ArtifactMetadata md = v.getMd();
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 7.4K bytes - Viewed (0) -
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/test/java/jcifs/internal/dfs/DfsReferralDataImplTest.java
referralData.setKey("test-key"); referralData.replaceCache(); assertEquals(referralData, cacheMap.get("test-key")); } @Test @DisplayName("Should replace cache entry with key") void testReplaceCache() { String key = "cache-key"; referralData.setKey(key); referralData.setCacheMap(cacheMap);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 30.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/DfsReferralDataInternalTest.java
@DisplayName("Should handle null key in setKey") void testSetKeyWithNull() { // Test with mock doNothing().when(mockReferralData).setKey(null); assertDoesNotThrow(() -> mockReferralData.setKey(null)); // Test with concrete implementation assertDoesNotThrow(() -> { concreteImplementation.setKey(null);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 28.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/DES.java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 22.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/crypto/CachedCipher.java
* cipher.setKey("mySecretKey"); * * // Encrypt text * String encrypted = cipher.encryptText("Hello World"); * * // Decrypt text * String decrypted = cipher.decryptText(encrypted); * * // For AES encryption * CachedCipher aesCipher = new CachedCipher(); * aesCipher.setAlgorithm("AES"); * aesCipher.setTransformation("AES"); * aesCipher.setKey("0123456789abcdef"); // 16-byte key for AES-128Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 15.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralDataInternal.java
* * @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 */ void setCacheMap(Map<String, DfsReferralDataInternal> map);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/helper/CrawlingInfoHelper.java
final CrawlingInfoParam crawlingInfoParam = new CrawlingInfoParam(); crawlingInfoParam.setCrawlingInfoId(crawlingInfo.getId()); crawlingInfoParam.setKey(entry.getKey()); crawlingInfoParam.setValue(entry.getValue()); crawlingInfoParamList.add(crawlingInfoParam); } getCrawlingInfoService().storeInfo(crawlingInfoParamList);
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 15.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)), "value"); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 8.9K bytes - Viewed (0)