Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,498 for Condition (0.2 sec)

  1. dbflute_fess/dfprop/conditionBeanMap.dfprop

    # conditionBeanMap: (NotRequired - Default map:{})
    #
    # Specification:
    # map:{
    #     ; [property-type] = map:{
    #         ; [condition-key] = map:{ [table] = list:{ [column] ; [column] } }
    # }
    #
    # property-type: String, Number, Date, OrderBy, ...
    # condition-key: NotEqual, GreaterThan, LessThan, GreaterEqual, LessEqual
    #              , InScope, NotInScope, PrefixSearch, LikeSearch, NotLikeSearch
    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. dbflute.xml

    	<property name="mydbflute.url" value="https://github.com/lastaflute/lastaflute-example-waterfront/archive/${branch.name}.zip" />
    
    	<target name="mydbflute.check">
    		<condition property="mydbflute.exists">
    			<available file="${mydbflute.dir}" type="dir" />
    		</condition>
    	</target>
    
    	<target name="download.dbflute" depends="mydbflute.check" unless="mydbflute.exists">
    		<mkdir dir="${mydbflute.dir}" />
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 04 02:03:51 GMT 2024
    - 1000 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/KeyMatchService.java

            if (StringUtil.isNotBlank(keyMatchPager.query)) {
                cb.query().setQuery_Wildcard(wrapQuery(keyMatchPager.query));
            }
            // TODO Long, Integer, String supported only.
    
            // setup condition
            cb.query().addOrderBy_Term_Asc();
    
            // search
    
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/RoleTypeService.java

            if (roleTypePager.id != null) {
                cb.query().docMeta().setId_Equal(roleTypePager.id);
            }
            // TODO Long, Integer, String supported only.
    
            // setup condition
            cb.query().addOrderBy_SortOrder_Asc();
            cb.query().addOrderBy_Name_Asc();
            // search
    
        }
    
        public List<RoleType> getRoleTypeList() {
            return roleTypeBhv.selectList(cb -> {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/FailureUrlService.java

            if (failureUrlPager.id != null) {
                cb.query().docMeta().setId_Equal(failureUrlPager.id);
            }
            // TODO Long, Integer, String supported only.
    
            // setup condition
            cb.query().addOrderBy_LastAccessTime_Desc();
    
            buildSearchCondition(failureUrlPager, cb);
        }
    
        public void deleteAll(final FailureUrlPager failureUrlPager) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/BadWordService.java

            if (badWordPager.id != null) {
                cb.query().docMeta().setId_Equal(badWordPager.id);
            }
            // TODO Long, Integer, String supported only.
    
            // setup condition
            cb.query().addOrderBy_SuggestWord_Asc();
    
            // search
    
        }
    
        public void importCsv(final Reader reader) {
            @SuppressWarnings("resource")
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  7. src/main/resources/fess_message_ru.properties

    errors.failed_to_read_request_file=Failed to read request file: {0}
    errors.invalid_header_for_request_file=Invalid header: {0}
    
    errors.invalid_query_unknown=The given query has unknown condition.
    errors.invalid_query_parse_error=The given query is invalid.
    errors.invalid_query_sort_value=The given sort ({0}) is invalid.
    errors.invalid_query_unsupported_sort_field=The given sort ({0}) is not supported.
    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)
  8. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractBehavior.java

    import org.opensearch.index.seqno.SequenceNumbers;
    import org.opensearch.search.SearchHit;
    import org.opensearch.search.SearchHits;
    
    /**
     * @param <ENTITY> The type of entity.
     * @param <CB> The type of condition-bean.
     * @author ESFlute (using FreeGen)
     */
    public abstract class EsAbstractBehavior<ENTITY extends Entity, CB extends ConditionBean> extends AbstractBehaviorWritable<ENTITY, CB> {
    
        @Resource
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 26.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/searchlog/AdminSearchlogAction.java

    /**
     * @author shinsuke
     */
    public class AdminSearchlogAction extends FessAdminAction {
    
        public static final String ROLE = "admin-searchlog";
    
        private static final String[] CONDITION_FIELDS =
                { "logType", "queryId", "userSessionId", "accessType", "requestedTimeRange", "pageSize" };
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

                public OptionalEntity<Map<String, Object>> getDocument(final String index,
                        final SearchCondition<SearchRequestBuilder> condition) {
                    final SearchRequestBuilder builder = new SearchRequestBuilder(this, SearchAction.INSTANCE);
                    condition.build(builder);
                    resultMap.put("index", index);
                    resultMap.put("query", builder.toString());
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 23.3K bytes
    - Viewed (0)
Back to top