Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for matchAll (0.12 sec)

  1. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

            deleteAllElevateWord(apply);
    
            final List<ElevateWord> list = ComponentUtil.getComponent(ElevateWordBhv.class).selectList(cb -> {
                cb.query().matchAll();
                cb.fetchFirst(ComponentUtil.getFessConfig().getPageElevateWordMaxFetchSizeAsInteger());
            });
    
            for (final ElevateWord elevateWord : list) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

            return writer -> {
                final SearchLogBhv bhv = ComponentUtil.getComponent(SearchLogBhv.class);
                bhv.selectCursor(cb -> {
                    cb.query().matchAll();
                    cb.query().addOrderBy_RequestedAt_Asc();
                }, new LogEntityRowHandler<SearchLog>() {
                    @Override
                    public void handle(final SearchLog entity) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

            }
        }
    
        protected List<BoostDocumentRule> getAvailableBoostDocumentRuleList() {
            return ComponentUtil.getComponent(BoostDocumentRuleBhv.class).selectList(cb -> {
                cb.query().matchAll();
                cb.query().addOrderBy_SortOrder_Asc();
                cb.fetchFirst(ComponentUtil.getFessConfig().getPageDocboostMaxFetchSizeAsInteger());
            });
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

                    buildQuery("allinurl: aaa bbb"));
        }
    
        public void test_build_sort() {
            String query =
                    "{\"function_score\":{\"query\":{\"match_all\":{\"boost\":1.0}},\"functions\":[{\"filter\":{\"match_all\":{\"boost\":1.0}},\"field_value_factor\":{\"field\":\"boost\",\"factor\":1.0,\"modifier\":\"none\"}}],\"score_mode\":\"multiply\",\"max_boost\":3.4028235E38,\"boost\":1.0}}";
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Jul 11 08:26:36 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  5. tensorflow/BUILD

        ),
    )
    
    selects.config_setting_group(
        name = "is_cuda_nvcc",
        match_all = [
            ":is_cuda_enabled",
            ":is_cuda_compiler_nvcc",
        ],
    )
    
    # Config setting that is satisfied when building with --config=cuda in OSS.
    selects.config_setting_group(
        name = "is_cuda_enabled_and_oss",
        match_all = [
            ":is_cuda_enabled",
            ":oss",
        ],
    )
    
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Wed Oct 16 05:28:35 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  6. RELEASE.md

    Nilsson, Mahmoud Abuzaina, Manish, Marcel Koester, Marcin Sielski, marload,
    Martin Jul, Matt Conley, mdfaijul, Meng, Peng, Meteorix, Michael Käufl,
    Michael137, Milan Straka, Mitchell Vitez, Ml-0, Mokke Meguru, Mshr-H, nammbash,
    Nathan Luehr, naumkin, Neeraj Bhadani, ngc92, Nick Morgan, nihui, Niranjan
    Hasabnis, Niranjan Yadla, Nishidha Panpaliya, Oceania2018, oclyke, Ouyang Jin,
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Tue Oct 22 14:33:53 UTC 2024
    - 735.3K bytes
    - Viewed (0)
  7. CREDITS

    github.com/mitchellh/go-homedir
    https://github.com/mitchellh/go-homedir
    ----------------------------------------------------------------
    The MIT License (MIT)
    
    Copyright (c) 2013 Mitchell Hashimoto
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 26 15:03:08 UTC 2024
    - 1.6M bytes
    - Viewed (0)
Back to top