Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 309 for Map (0.21 sec)

  1. dbflute_fess/dfprop/conditionBeanMap.dfprop

            #; !GreaterThan = map:{ $$ALL$$ = list:{ $$CommonColumn$$ } }
            #; !LessThan = map:{ $$ALL$$ = list:{ $$CommonColumn$$ } }
            #; !GreaterEqual = map:{ $$ALL$$ = list:{ $$CommonColumn$$ } }
            #; !LessEqual = map:{ $$ALL$$ = list:{ $$CommonColumn$$ } }
            #; !InScope = map:{ $$ALL$$ = list:{ $$CommonColumn$$ } }
            #; !NotInScope = map:{ $$ALL$$ = list:{ $$CommonColumn$$ } }
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 4K bytes
    - Viewed (1)
  2. src/main/java/org/codelibs/fess/util/ParameterUtil.java

        public static void loadConfigParams(final Map<String, Object> paramMap, final String configParam) {
            final Map<String, String> map = ParameterUtil.parse(configParam);
            if (!map.isEmpty()) {
                paramMap.putAll(map);
            }
        }
    
        public static Map<ConfigName, Map<String, String>> createConfigParameterMap(final String configParameters) {
            final Map<ConfigName, Map<String, String>> map = new HashMap<>();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/entity/ParamMapTest.java

            return new ParamMap<>(map);
        }
    
        private ParamMap<Object, Object> createCamelMap() {
            final Map<Object, Object> map = new HashMap<>();
            map.put("aaa", "111");
            map.put("aaaBbb", "222");
            map.put("aaaBbbCcc", "333");
            map.put("ccc.ddd", "444");
            return new ParamMap<>(map);
        }
    
        public void test_snake_get() {
            Map<Object, Object> paramMap = createSnakeMap();
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java

        public int load() {
            final Map<String, Map<String, String[]>> relatedQueryMap = new HashMap<>();
            getAvailableRelatedQueryList().stream().forEach(entity -> {
                final String key = getHostKey(entity);
                Map<String, String[]> map = relatedQueryMap.get(key);
                if (map == null) {
                    map = new HashMap<>();
                    relatedQueryMap.put(key, map);
                }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/it/admin/PluginTests.java

            return ITEM_ENDPOINT_SUFFIX;
        }
    
        @Override
        protected Map<String, Object> createTestParam(int id) {
            final Map<String, Object> requestBody = new HashMap<>();
            return requestBody;
        }
    
        @Override
        protected Map<String, Object> getUpdateMap() {
            final Map<String, Object> updateMap = new HashMap<>();
            return updateMap;
        }
    
        @AfterEach
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/filter/EncodingFilter.java

    import org.codelibs.core.lang.StringUtil;
    import org.lastaflute.web.servlet.filter.LastaPrepareFilter;
    
    public class EncodingFilter implements Filter {
        public static final String ENCODING_MAP = "encodingRules";
    
        protected Map<String, String> encodingMap = new ConcurrentHashMap<>();
    
        protected String encoding;
    
        protected ServletContext servletContext;
    
        protected URLCodec urlCodec = new URLCodec();
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/user/exentity/Role.java

            return "Role [name=" + name + "]";
        }
    
        public Map<String, String> getAttributes() {
            return attributes;
        }
    
        public void setAttributes(final Map<String, String> attributes) {
            this.attributes = attributes;
        }
    
        @Override
        public Map<String, Object> toSource() {
            final Map<String, Object> sourceMap = new HashMap<>();
            if (name != null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/it/admin/dict/DictCrudTestBase.java

        }
    
        @BeforeEach
        protected void initializeDictId() {
            final Map<String, Object> searchBody = new HashMap<>();
            final String response = checkMethodBase(searchBody).get("/api/admin/dict").asString();
            final List<Map<String, String>> dicts = JsonPath.from(response).getList("response.settings");
    
            for (Map<String, String> item : dicts) {
                assertTrue(item.containsKey("id"));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/it/admin/RoleTests.java

        }
    
        @Override
        protected Map<String, Object> createTestParam(int id) {
            final Map<String, Object> requestBody = new HashMap<>();
            final String keyProp = NAME_PREFIX + id;
            requestBody.put(KEY_PROPERTY, keyProp);
            return requestBody;
        }
    
        private static final String NEW_SUFFIX = "_new";
    
        @Override
        protected Map<String, Object> getUpdateMap() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  10. dbflute_fess/dfprop/outsideSqlMap.dfprop

        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o applicationOutsideSqlMap: (NotRequired - Default map:{})
        #  You can set additional users.
        #  Elements of this map are as below:
        #   o key of map: a relative path to the application project from DBFlute client
        #   o sqlDirectory: SQL directory as a relative path from the application directory 
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Jul 25 06:04:16 GMT 2015
    - 8K bytes
    - Viewed (0)
Back to top