Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for MatchAll (0.44 sec)

  1. pkg/proxy/util/nodeport_addresses_test.go

    			}
    
    			for _, family := range []v1.IPFamily{v1.IPv4Protocol, v1.IPv6Protocol} {
    				npa := NewNodePortAddresses(family, tc.cidrs)
    
    				if npa.MatchAll() != tc.expected[family].matchAll {
    					t.Errorf("unexpected MatchAll(%s), expected: %v", family, tc.expected[family].matchAll)
    				}
    
    				ips, err := npa.GetNodeIPs(nw)
    				expectedIPs := tc.expected[family].ips
    
    				// The fake InterfaceAddrs() never returns an error, so
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

            crawlingInfoParamBhv.queryDelete(cb1 -> cb1.query().filtered((cq, cf) -> {
                cq.matchAll();
                if (!idList.isEmpty()) {
                    cf.not(subCf -> subCf.setCrawlingInfoId_InScope(idList));
                }
            }));
            crawlingInfoBhv.queryDelete(cb2 -> cb2.query().filtered((cq, cf) -> {
                cq.matchAll();
                if (!idList.isEmpty()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  4. 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();
                }, entity -> {
                    final StringBuilder buf = new StringBuilder();
                    buf.append('{');
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionQuery.java

            regQ(queryStringQuery);
            if (opLambda != null) {
                opLambda.callback(queryStringQuery);
            }
        }
    
        public void matchAll() {
            doMatchAll(null);
        }
    
        public void matchAll(ConditionOptionCall<MatchAllQueryBuilder> opLambda) {
            assertObjectNotNull("opLambda", opLambda);
            doMatchAll(opLambda);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionQuery.java

            regQ(queryStringQuery);
            if (opLambda != null) {
                opLambda.callback(queryStringQuery);
            }
        }
    
        public void matchAll() {
            doMatchAll(null);
        }
    
        public void matchAll(ConditionOptionCall<MatchAllQueryBuilder> opLambda) {
            assertObjectNotNull("opLambda", opLambda);
            doMatchAll(opLambda);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionQuery.java

            regQ(queryStringQuery);
            if (opLambda != null) {
                opLambda.callback(queryStringQuery);
            }
        }
    
        public void matchAll() {
            doMatchAll(null);
        }
    
        public void matchAll(ConditionOptionCall<MatchAllQueryBuilder> opLambda) {
            assertObjectNotNull("opLambda", opLambda);
            doMatchAll(opLambda);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/ElevateWordService.java

                list.add("Permissions");
                list.add("Labels");
                list.add("Boost");
                csvWriter.writeValues(list);
    
                elevateWordBhv.selectCursor(cb -> cb.query().matchAll(), new EntityRowHandler<ElevateWord>() {
                    @Override
                    public void handle(final ElevateWord entity) {
                        final List<String> list = new ArrayList<>();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. pilot/pkg/xds/lds_test.go

    				InterceptionMode: model.InterceptionNone,
    				HTTP10:           "1",
    			},
    			IPAddresses:     []string{"10.11.0.1"}, // matches none.yaml s1tcp.none
    			ConfigNamespace: "none",
    		}, nil, watchAll)
    
    		err := adscon.Save(wd + "/none")
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		// 7071 (inbound), 2001 (service - also as http proxy), 18010 (fortio)
    		if len(adscon.GetHTTPListeners()) != 3 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top