Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 208 for shield (0.25 sec)

  1. src/main/java/org/codelibs/fess/query/QueryCommand.java

        protected SortBuilder<?> createFieldSortBuilder(final String field, final SortOrder order) {
            if (QueryFieldConfig.SCORE_FIELD.equals(field) || QueryFieldConfig.DOC_SCORE_FIELD.equals(field)) {
                return SortBuilders.scoreSort().order(order);
            }
            return SortBuilders.fieldSort(field).order(order);
        }
    
        protected boolean isSearchField(final String field) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  2. src/main/resources/fess_message_ru.properties

    constraints.Required.message                = {item} is required.
    constraints.TypeInteger.message             = {item} should be numeric.
    constraints.TypeLong.message                = {item} should be numeric.
    constraints.TypeFloat.message               = {item} should be numeric.
    constraints.TypeDouble.message              = {item} should be numeric.
    constraints.TypeAny.message                 = {item} cannot convert as {propertyType}.
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri May 20 12:12:28 GMT 2022
    - 10.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/entity/PingResponse.java

                if (fieldSet.contains(CLUSTER_NAME)) {
                    builder.field(CLUSTER_NAME, response.getClusterName());
                }
                if (fieldSet.contains(STATUS)) {
                    builder.field(STATUS, response.getStatus().name().toLowerCase(Locale.ROOT));
                }
                if (fieldSet.contains(TIMED_OUT)) {
                    builder.field(TIMED_OUT, response.isTimedOut());
                }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/entity/QueryContext.java

            if (queryString != null) {
                if (queryString.startsWith(ALLINURL_FIELD_PREFIX)) {
                    this.defaultField = ComponentUtil.getFessConfig().getIndexFieldUrl();
                    this.queryString = queryString.substring(ALLINURL_FIELD_PREFIX.length());
                } else if (queryString.startsWith(ALLINTITLE_FIELD_PREFIX)) {
                    this.defaultField = ComponentUtil.getFessConfig().getIndexFieldTitle();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/common/help.jsp

    		customizable.
    	</dd>
    	<dt>Sort</dt>
    	<dd>
    		sort field sorts documents by a specified field name. The format is
    		"sort:&lt;field&gt;.&lt;order&gt;", where &lt;order&gt; is asc or
    		desc. If you want to find documents which has "Fess" and sort them in
    		descending order, you can enter:
    		<pre>Fess sort:content_length.desc</pre>
    		The available sort field are "created", "content_length" and
    		"last_modified", and they are customizable.
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Feb 26 14:01:31 GMT 2018
    - 2.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/util/ParameterUtil.java

        private static final String CIPHER_PREFIX = "{cipher}";
    
        protected static final String XPATH_PREFIX = "field.xpath.";
    
        protected static final String META_PREFIX = "field.meta.";
    
        protected static final String VALUE_PREFIX = "field.value.";
    
        protected static final String SCRIPT_PREFIX = "field.script.";
    
        protected static final String CLIENT_PREFIX = "client.";
    
    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)
  7. dbflute_fess/dfprop/outsideSqlMap.dfprop

        #   [true]
        #     You should always write the title of outsideSql.
        #     If it doesn't exist, the OutsideSqlTest task fails.
        #
        #; isRequiredSqlTitle = true
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o isRequiredSqlDescription: (NotRequired - Default true)
        #   [true]
        #     You should always write the description of outsideSql.
    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)
  8. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

                        yield webConfigService.getWebConfig(id).get();
                    }
                    case FILE -> {
                        final FileConfigService fileConfigService = ComponentUtil.getComponent(FileConfigService.class);
                        yield fileConfigService.getFileConfig(id).get();
                    }
                    case DATA -> {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getDevelopmentHere();
    
        /**
         * Is the property for the key 'development.here' true? <br>
         * The value is, e.g. true <br>
         * comment: Is development environment here? (used for various purpose, you should set false if unknown)
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/user/bsentity/BsGroup.java

                addFieldToSource(sourceMap, "name", name);
            }
            return sourceMap;
        }
    
        protected void addFieldToSource(Map<String, Object> sourceMap, String field, Object value) {
            sourceMap.put(field, value);
        }
    
        // ===================================================================================
        //                                                                      Basic Override
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.3K bytes
    - Viewed (0)
Back to top