Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 381 for key5 (0.02 seconds)

  1. src/test/java/org/codelibs/fess/entity/SearchLogEventTest.java

            sourceMap.put("key1", "value1");
            sourceMap.put("key2", 123);
            sourceMap.put("key3", true);
            event.setSourceMap(sourceMap);
    
            Map<String, Object> result = event.toSource();
            assertNotNull(result);
            assertEquals(3, result.size());
            assertEquals("value1", result.get("key1"));
            assertEquals(123, result.get("key2"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.8K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/ds/DataStoreTest.java

            // Create test data
            DataConfig config = new DataConfig();
            config.setName("test-config");
    
            DataStoreParams params = new DataStoreParams();
            params.put("key1", "value1");
            params.put("key2", "value2");
    
            IndexUpdateCallback callback = new TestIndexUpdateCallback();
    
            // Execute store method
            dataStore.store(config, callback, params);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 13.2K bytes
    - Click Count (0)
  3. dbflute_fess/dfprop/conditionBeanMap.dfprop

            # String columns may not be needed
            # to be set these condition-keys basically.
            #; GreaterThan = map:{}
            #; LessThan = map:{}
            #; GreaterEqual = map:{}
            #; LessEqual = map:{}
    
            # [Exclude]
            # Common columns of String type may not be needed
            # to be set these condition-keys basically.
            #; !NotEqual = map:{ $$ALL$$ = list:{ $$CommonColumn$$ } }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 4K bytes
    - Click Count (0)
  4. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

    )
    
    private class ConcurrentMultiMap<K, V> {
        private val map = ConcurrentHashMap<K, MutableSet<V>>()
    
        fun add(key: K, value: V) =
            map.computeIfAbsent(key, { _ -> ConcurrentHashMap.newKeySet() }).add(value)
    
        fun getOrEmpty(key: K): Set<V> = map[key] ?: emptySet()
    }
    
    abstract class TestFilesCleanupService @Inject constructor(
        private val fileSystemOperations: FileSystemOperations,
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 11 11:05:07 GMT 2026
    - 14.3K bytes
    - Click Count (1)
  5. src/main/java/org/codelibs/fess/util/DocMap.java

         *
         * @param key the key whose presence in this map is to be tested
         * @return true if this map contains a mapping for the specified key
         */
        @Override
        public boolean containsKey(final Object key) {
            return parent.containsKey(key);
        }
    
        /**
         * Returns true if this map maps one or more keys to the specified value.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/helper/VirtualHostHelperTest.java

            String key = virtualHostHelper.getVirtualHostKey();
            assertEquals("", key);
    
            // Matching host header
            request.addHeader("Host", "example.com");
            key = virtualHostHelper.getVirtualHostKey();
            assertEquals("", key); // Still empty due to caching
    
            // Test caching by calling again - should return cached value
            key = virtualHostHelper.getVirtualHostKey();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.8K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/util/SystemUtil.java

        }
    
        /**
         * Masks sensitive values for logging purposes.
         * Keys matching the pattern defined in 'app.log.sensitive.property.pattern' system property
         * will have their values replaced with "********".
         *
         * @param key The key name to check
         * @param value The value to potentially mask
         * @return The masked value if the key matches a sensitive pattern, otherwise the original value
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 03:32:50 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

            // Test initial null map
            crawlingInfoHelper.putToInfoMap("key1", "value1");
            assertNotNull(crawlingInfoHelper.infoMap);
    
            // Test adding multiple entries
            crawlingInfoHelper.putToInfoMap("key2", "value2");
            crawlingInfoHelper.putToInfoMap("key3", "value3");
    
            assertEquals("value1", crawlingInfoHelper.infoMap.get("key1"));
            assertEquals("value2", crawlingInfoHelper.infoMap.get("key2"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 12 01:46:45 GMT 2026
    - 28.7K bytes
    - Click Count (0)
  9. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateContributorsInReleaseNotes.kt

            val unrecognizedContributors = contributorsFromPullRequests.keys - contributorsInReleaseNotes.keys
            if (unrecognizedContributors.isNotEmpty()) {
                val contributorsToUpdate = contributorsInReleaseNotes + unrecognizedContributors.map { it to contributorsFromPullRequests[it]!! }
                val sortedContributors = contributorsToUpdate.entries.sortedBy { (it.value.name ?: it.key).lowercase() }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Sun Dec 15 07:49:41 GMT 2024
    - 2K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/Constants.java

        /** Storage endpoint configuration key. */
        public static final String STORAGE_ENDPOINT = "storage.endpoint";
    
        /** Storage access key configuration key. */
        public static final String STORAGE_ACCESS_KEY = "storage.accesskey";
    
        /** Storage secret key configuration key. */
        public static final String STORAGE_SECRET_KEY = "storage.secretkey";
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 35.8K bytes
    - Click Count (0)
Back to Top