- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 122 for setKey (0.03 sec)
-
src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java
CrawlingInfoParam param1 = new CrawlingInfoParam(); param1.setKey("total_docs"); param1.setValue("1500"); paramList.add(param1); CrawlingInfoParam param2 = new CrawlingInfoParam(); param2.setKey("error_count"); param2.setValue("3"); paramList.add(param2);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 26.6K 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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 15.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/CompactHashMap.java
*/ void insertEntry( int entryIndex, @ParametricNullness K key, @ParametricNullness V value, int hash, int mask) { this.setEntry(entryIndex, CompactHashing.maskCombine(hash, UNSET, mask)); this.setKey(entryIndex, key); this.setValue(entryIndex, value); } /** Resizes the entries storage if necessary. */ private void resizeMeMaybe(int newSize) { int entriesSize = requireEntries().length;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 39.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsCrawlingInfoParamBhv.java
result.setCrawlingInfoId(DfTypeUtil.toString(source.get("crawlingInfoId"))); result.setCreatedTime(DfTypeUtil.toLong(source.get("createdTime"))); result.setKey(DfTypeUtil.toString(source.get("key"))); result.setValue(DfTypeUtil.toString(source.get("value"))); return updateEntity(source, result); } catch (InstantiationException | IllegalAccessException e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/RoleQueryHelperTest.java
public class RoleQueryHelperTest extends UnitFessTestCase { public CachedCipher cipher; @Override public void setUp() throws Exception { super.setUp(); cipher = new CachedCipher(); cipher.setKey("1234567890123456"); // Setup system properties for DI container File file = File.createTempFile("test", ".properties"); file.deleteOnExit();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 28.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/crypto/CachedCipher.java
} /** * Returns the key. * * @return the key */ public String getKey() { return key; } /** * Sets the key. * * @param key * the key */ public void setKey(final String key) { this.key = key; } /** * Returns the charset name. *
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 11.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/CompactHashMap.java
*/ void insertEntry( int entryIndex, @ParametricNullness K key, @ParametricNullness V value, int hash, int mask) { this.setEntry(entryIndex, CompactHashing.maskCombine(hash, UNSET, mask)); this.setKey(entryIndex, key); this.setValue(entryIndex, value); } /** Resizes the entries storage if necessary. */ private void resizeMeMaybe(int newSize) { int entriesSize = requireEntries().length;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 35.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java
} final CrawlingInfoParam entity = new CrawlingInfoParam(); entity.setCrawlingInfoId(crawlingInfo.getId()); entity.setKey(list.get(2)); entity.setValue(list.get(3)); entity.setCreatedTime(formatter.parse(list.get(4)).getTime());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/auth/chain/AuthenticationChainTest.java
assertTrue(result); assertEquals(1, chain.changePasswordCalls.size()); assertEquals("testuser", chain.changePasswordCalls.get(0).getKey()); assertEquals("newpassword123", chain.changePasswordCalls.get(0).getValue()); } // Test changePassword with failure public void test_changePassword_failure() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/TreeRangeMap.java
RangeMapEntry(Range<K> range, V value) { super(range, value); } boolean contains(K value) { return getKey().contains(value); } Cut<K> getLowerBound() { return getKey().lowerBound; } Cut<K> getUpperBound() { return getKey().upperBound; } } @Override public @Nullable V get(K key) { Entry<Range<K>, V> entry = getEntry(key);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 18 15:05:43 UTC 2025 - 22.8K bytes - Viewed (0)