Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 22 for optall (0.03 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/opensearch/config/exentity/ScheduledJobTest.java

            final AtomicBoolean launchNowCalled = new AtomicBoolean(false);
    
            final LaScheduledJob mockLaJob = createMockLaScheduledJob(opCall -> {
                final LaunchNowOption option = new LaunchNowOption();
                opCall.callback(option);
                capturedOption.set(option);
                launchNowCalled.set(true);
                return null;
            });
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerActionTest.java

            final ScheduledJob scheduledJob = createScheduledJob("job-1", "Test Job", true, true);
    
            registerMockJobManager("job-1", opCall -> {
                final LaunchNowOption option = new LaunchNowOption();
                opCall.callback(option);
                capturedOption.set(option);
                return null;
            });
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 13K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java

            assertTrue(dataStoreParams.containsKey("key2"));
        }
    
        // Test putAll
        @Test
        public void test_putAll() {
            Map<String, String> map = new HashMap<>();
            map.put("key1", "value1");
            map.put("key2", "value2");
            map.put("key3", "value3");
    
            dataStoreParams.putAll(map);
    
            assertEquals("value1", dataStoreParams.get("key1"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 10.9K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/mylasta/mail/LogNotificationPostcard.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.mylasta.mail;
    
    import org.lastaflute.core.mail.LaTypicalPostcard;
    import org.lastaflute.core.mail.MPCall;
    import org.lastaflute.core.mail.Postbox;
    
    /**
     * The postcard for MailFlute on LastaFlute.
     * @author FreeGen
     */
    public class LogNotificationPostcard extends LaTypicalPostcard {
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/entity/ParamMap.java

            if (value != null) {
                return value;
            }
            return parent.remove(key);
        }
    
        @Override
        public void putAll(final Map<? extends K, ? extends V> m) {
            parent.putAll(m);
        }
    
        @Override
        public void clear() {
            parent.clear();
        }
    
        @Override
        public Set<K> keySet() {
            // return original keys
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.8K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/util/DocMap.java

        /**
         * Copies all of the mappings from the specified map to this map.
         *
         * @param m the mappings to be stored in this map
         */
        @Override
        public void putAll(final Map<? extends String, ? extends Object> m) {
            parent.putAll(m);
        }
    
        /**
         * Removes all of the mappings from this map.
         */
        @Override
        public void clear() {
            parent.clear();
        }
    
    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)
  7. src/main/java/org/codelibs/fess/entity/DataStoreParams.java

         * Adds all key-value pairs from the specified map to this parameter container.
         *
         * @param map the map containing parameters to add, must not be null
         */
        public void putAll(final Map<String, String> map) {
            params.putAll(map);
        }
    
        /**
         * Checks if the specified key exists in the parameter map.
         *
         * @param key the key to check for existence
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.8K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/opensearch/user/exentity/User.java

                sourceMap.put("groups", groups);
            }
            if (roles != null) {
                sourceMap.put("roles", roles);
            }
            if (attributes != null) {
                sourceMap.putAll(attributes);
            }
            return sourceMap;
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 06:22:27 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

            if (searchHit.getSourceAsMap() == null) {
                searchHit.getFields().forEach((key, value) -> {
                    docMap.put(key, value.getValue());
                });
            } else {
                docMap.putAll(searchHit.getSourceAsMap());
            }
    
            final ViewHelper viewHelper = ComponentUtil.getViewHelper();
    
            final Map<String, HighlightField> highlightFields = searchHit.getHighlightFields();
            try {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 09:24:04 GMT 2025
    - 12.6K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/ds/AbstractDataStore.java

            }).collect(Collectors.toMap(Pair<String, String>::getFirst, Pair<String, String>::getSecond));
            final Map<String, String> configScriptMap = config.getHandlerScriptMap();
    
            initParamMap.putAll(configParamMap);
            final DataStoreParams paramMap = initParamMap;
    
            // default values
            final Map<String, Object> defaultDataMap = new HashMap<>();
    
            // cid
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 7.6K bytes
    - Click Count (0)
Back to Top