Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,201 for Spring (0.21 sec)

  1. dbflute_fess/dfprop/dependencyInjectionMap.dfprop

        #                                                                               Spring
        #                                                                               ======
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o dbfluteBeansFileName: (NotRequired - Default 'dbfluteBeans.xml')
        #  The file name of DBFlute DI configuration for Spring and Lucy.
        #
        # @SpringOnly
        #; dbfluteBeansFileName = dbfluteBeans.xml
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 6.5K bytes
    - Viewed (0)
  2. dbflute_fess/dfprop/basicInfoMap.dfprop

        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o targetContainer: (Required)
        #  The target DI container.
        #  Your possible choices are:
        #
        #       spring, guice, seasar, cdi, lasta_di
        #
        ; targetContainer = spring
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o packageBase: (Required)
        #  The base directory of package for generated class.
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 9.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/ParameterUtil.java

            final Map<String, String> configConfigMap = new LinkedHashMap<>();
            final Map<String, String> clientConfigMap = new LinkedHashMap<>();
            final Map<String, String> xpathConfigMap = new LinkedHashMap<>();
            final Map<String, String> metaConfigMap = new LinkedHashMap<>();
            final Map<String, String> valueConfigMap = new LinkedHashMap<>();
            final Map<String, String> scriptConfigMap = new LinkedHashMap<>();
    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)
  4. src/main/java/org/codelibs/fess/filter/EncodingFilter.java

        }
    
        protected Map<String, String[]> parseQueryString(final String queryString, final String enc) throws IOException {
            final Map<String, List<String>> paramListMap = new HashMap<>();
            final String[] pairs = queryString.split("&");
            try {
                for (final String pair : pairs) {
                    final int pos = pair.indexOf('=');
                    if (pos >= 0) {
    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)
  5. src/main/java/org/codelibs/fess/entity/SearchRequestParams.java

    public abstract class SearchRequestParams {
    
        public static final String AS_NQ = "nq";
    
        public static final String AS_OQ = "oq";
    
        public static final String AS_EPQ = "epq";
    
        public static final String AS_Q = "q";
    
        public static final String AS_FILETYPE = "filetype";
    
        public static final String AS_SITESEARCH = "sitesearch";
    
        public static final String AS_OCCURRENCE = "occt";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/it/admin/PluginTests.java

    public class PluginTests extends CrudTestBase {
    
        private static final String NAME_PREFIX = "pluginTests_";
        private static final String API_PATH = "/api/admin/plugin";
        private static final String LIST_ENDPOINT_SUFFIX = "";
        private static final String ITEM_ENDPOINT_SUFFIX = "";
        private static final String INSTALLED_ENDPOINT_SUFFIX = "installed";
        private static final String AVAILABLE_ENDPOINT_SUFFIX = "available";
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/it/admin/dict/DictCrudTestBase.java

            return ITEM_ENDPOINT_SUFFIX + "/" + dictId;
        }
    
        @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");
    
    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)
  8. src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java

        }
    
        protected String getHostKey(final RelatedQuery entity) {
            final String key = entity.getVirtualHost();
            return StringUtil.isBlank(key) ? StringUtil.EMPTY : key;
        }
    
        public String[] getRelatedQueries(final String query) {
            final String key = ComponentUtil.getVirtualHostHelper().getVirtualHostKey();
            final Map<String, String[]> map = relatedQueryMap.get(key);
    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)
  9. src/test/java/org/codelibs/fess/it/admin/RoleTests.java

    public class RoleTests extends CrudTestBase {
    
        private static final String NAME_PREFIX = "roleTest_";
        private static final String API_PATH = "/api/admin/role";
        private static final String LIST_ENDPOINT_SUFFIX = "settings";
        private static final String ITEM_ENDPOINT_SUFFIX = "setting";
    
        private static final String KEY_PROPERTY = "name";
    
        @Override
        protected String getNamePrefix() {
            return NAME_PREFIX;
        }
    
    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. src/main/java/org/codelibs/curl/CurlResponse.java

        public Map<String, List<String>> getHeaders() {
            return headers;
        }
    
        public String[] getHeaderValues(final String name) {
            final List<String> list = headers.get(name.toLowerCase(Locale.ROOT));
            if (list == null) {
                return new String[0];
            }
            return list.toArray(new String[list.size()]);
        }
    
        public String getHeaderValue(final String name) {
    Java
    - Registered: Thu May 09 15:34:10 GMT 2024
    - Last Modified: Mon Nov 14 21:05:19 GMT 2022
    - 4K bytes
    - Viewed (0)
Back to top