Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for MatchAll (0.11 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. pkg/proxy/util/nodeport_addresses.go

    			npa.cidrs = []*net.IPNet{cidr}
    			npa.matchAll = true
    			break
    		}
    
    		npa.cidrs = append(npa.cidrs, cidr)
    	}
    
    	return npa
    }
    
    func (npa *NodePortAddresses) String() string {
    	return fmt.Sprintf("%v", npa.cidrStrings)
    }
    
    // MatchAll returns true if npa matches all node IPs (of npa's given family)
    func (npa *NodePortAddresses) MatchAll() bool {
    	return npa.matchAll
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/pack/pack.go

    type Archive struct {
    	a        *archive.Archive
    	files    []string // Explicit list of files to be processed.
    	pad      int      // Padding bytes required at end of current archive file
    	matchAll bool     // match all files in archive
    }
    
    // archive opens (and if necessary creates) the named archive.
    func openArchive(name string, mode int, files []string) *Archive {
    	f, err := os.OpenFile(name, mode, 0666)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. 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)
  6. src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java

            }
            load();
        }
    
        public List<RelatedQuery> getAvailableRelatedQueryList() {
    
            return ComponentUtil.getComponent(RelatedQueryBhv.class).selectList(cb -> {
                cb.query().matchAll();
                cb.query().addOrderBy_Term_Asc();
                cb.fetchFirst(ComponentUtil.getFessConfig().getPageRelatedqueryMaxFetchSizeAsInteger());
            });
        }
    
        @Override
        public int load() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. 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)
  8. src/main/java/org/codelibs/fess/app/service/RelatedContentService.java

            // search
    
        }
    
        public List<RelatedContent> getAvailableRelatedContentList() {
            return relatedContentBhv.selectList(cb -> {
                cb.query().matchAll();
                cb.query().addOrderBy_Term_Asc();
                cb.fetchFirst(fessConfig.getPageDocboostMaxFetchSizeAsInteger());
            });
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java

            }
            load();
        }
    
        public List<KeyMatch> getAvailableKeyMatchList() {
            return ComponentUtil.getComponent(KeyMatchBhv.class).selectList(cb -> {
                cb.query().matchAll();
                cb.fetchFirst(ComponentUtil.getFessConfig().getPageKeymatchMaxFetchSizeAsInteger());
            });
        }
    
        @Override
        public int load() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/GroupService.java

            cb.query().addOrderBy_Name_Asc();
    
            // search
    
        }
    
        public List<Group> getAvailableGroupList() {
            return groupBhv.selectList(cb -> {
                cb.query().matchAll();
                cb.query().addOrderBy_Name_Asc();
                cb.paging(fessConfig.getPageGroupMaxFetchSizeAsInteger(), 1);
            });
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top