Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 972 for Spring (0.24 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 Apr 22 08:04:10 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 Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 9.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            @Override
            public Map<String, String[]> getFields() {
                final Map<String, String[]> fields = new HashMap<>();
                for (final Map.Entry<String, String[]> entry : request.getParameterMap().entrySet()) {
                    final String key = entry.getKey();
                    if (key.startsWith("fields.")) {
                        final String[] value = simplifyArray(entry.getValue());
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 02:17:23 GMT 2024
    - 50.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/user/bsentity/BsUser.java

        /** homePhone */
        protected String homePhone;
    
        /** homePostalAddress */
        protected String homePostalAddress;
    
        /** initials */
        protected String initials;
    
        /** internationaliSDNNumber */
        protected String internationaliSDNNumber;
    
        /** labeledURI */
        protected String labeledURI;
    
        /** mail */
        protected String mail;
    
        /** mobile */
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 22.8K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java

                    getQuery("\\+-&&||!(){}[]^~*?;:/", new String[0], Collections.emptyMap(), Collections.emptyMap(), true));
        }
    
        private String getAsQuery(final String query, final Map<String, String[]> conditions) {
            return getQuery(query, new String[0], Collections.emptyMap(), conditions, false);
        }
    
        private String getAsQuery(final Map<String, String[]> conditions) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                    .build(new CacheLoader<String, List<Map<String, String>>>() {
                        @Override
                        public List<Map<String, String>> load(final String key) throws Exception {
                            final ULocale uLocale = new ULocale(key);
                            final Locale displayLocale = uLocale.toLocale();
                            final List<Map<String, String>> langItems = new ArrayList<>(supportedLanguages.length);
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 26.5K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_AUTH_REALM = "{labels.authRealm}";
    
        /** The key of the message: Status */
        public static final String LABELS_AVAILABLE = "{labels.available}";
    
        /** The key of the message: Created by */
        public static final String LABELS_CREATED_BY = "{labels.createdBy}";
    
        /** The key of the message: Created Time */
        public static final String LABELS_CREATED_TIME = "{labels.createdTime}";
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionAggregation.java

        protected void checkEsInvalidAggregation(String name, Object value) {
            if (value == null || (value instanceof String && ((String) value).isEmpty())) {
                String msg = "Cannot register null or empty aggregation: name=" + name + " value=" + value;
                throw new InvalidQueryRegisteredException(msg);
            }
        }
    
        protected void checkEsInvalidAggregationCollection(String name, Collection<?> values) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsWebAuthenticationCQ.java

        public void setId_Equal(String id) {
            setId_Term(id, null);
        }
    
        public void setId_Equal(String id, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setId_Term(id, opLambda);
        }
    
        public void setId_Term(String id) {
            setId_Term(id, null);
        }
    
        public void setId_Term(String id, ConditionOptionCall<TermQueryBuilder> opLambda) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 95.5K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/it/CrudTestBase.java

        // ================
        abstract protected String getNamePrefix();
    
        abstract protected String getApiPath();
    
        abstract protected String getKeyProperty();
    
        abstract protected String getListEndpointSuffix();
    
        abstract protected String getItemEndpointSuffix();
    
        abstract protected Map<String, Object> createTestParam(int id);
    
        abstract protected Map<String, Object> getUpdateMap();
    
        // ================
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.8K bytes
    - Viewed (0)
Back to top