Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for tagsList (0.14 sec)

  1. src/test/java/org/codelibs/opensearch/extension/analysis/PosConcatenationFilterFactory.java

                final Settings settings) {
            super(indexSettings, name, settings);
    
            final List<String> tagList = Analysis.parseWordList(environment, settings, "tags", s -> s);
            if (tagList != null) {
                posTags.addAll(tagList);
            }
        }
    
        @Override
        public TokenStream create(final TokenStream tokenStream) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java

            List<SuggestItem> items = null;
            final List<String> tagList = new ArrayList<>();
            for (final String tagFieldName : tagFieldNames) {
                tagList.addAll(Arrays.asList(getFieldValues(document, tagFieldName)));
            }
            final String[] tags = tagList.toArray(new String[tagList.size()]);
            final String[] roles = getFieldValues(document, roleFieldName);
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

                final List<String> tagList = new ArrayList<>();
                final String key = ComponentUtil.getVirtualHostHelper().getVirtualHostKey();
                if (StringUtil.isNotBlank(key)) {
                    tagList.add(key);
                }
                runtime.registerData("popularWords", popularWordHelper.getWordList(SearchRequestType.SEARCH, null,
                        tagList.toArray(new String[tagList.size()]), null, null, null));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/call.go

    // xlistList elements do not exist (targsList and xlistList are nil) or the elements are nil.
    // For each partially instantiated generic function operand, the corresponding targsList and
    // xlistList elements are the operand's partial type arguments and type expression lists.
    func (check *Checker) genericExprList(elist []syntax.Expr) (resList []*operand, targsList [][]Type, xlistList [][]syntax.Expr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java

            final List<String> tagList = new ArrayList<>(item1.getTags().length + item2.getTags().length);
            Collections.addAll(tagList, item1.getTags());
            for (final String tag : item2.getTags()) {
                if (!tagList.contains(tag)) {
                    tagList.add(tag);
                }
            }
            mergedItem.tags = tagList.toArray(new String[tagList.size()]);
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  6. src/go/types/call.go

    // xlistList elements do not exist (targsList and xlistList are nil) or the elements are nil.
    // For each partially instantiated generic function operand, the corresponding targsList and
    // xlistList elements are the operand's partial type arguments and type expression lists.
    func (check *Checker) genericExprList(elist []ast.Expr) (resList []*operand, targsList [][]Type, xlistList [][]ast.Expr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/struct.go

    		// share the same type expression. Only check type if it's a new type.
    		if i == 0 || f.Type != prev {
    			typ = check.varType(f.Type)
    			prev = f.Type
    		}
    		tag = ""
    		if i < len(e.TagList) {
    			tag = check.tag(e.TagList[i])
    		}
    		if f.Name != nil {
    			// named field
    			add(f.Name, false)
    		} else {
    			// embedded field
    			// spec: "An embedded type must be specified as a type name T or as a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/positions.go

    			m = n.Elem
    		case *DotsType:
    			m = n.Elem
    		case *StructType:
    			if l := lastField(n.FieldList); l != nil {
    				m = l
    				continue
    			}
    			return n.Pos()
    			// TODO(gri) need to take TagList into account
    		case *Field:
    			if n.Type != nil {
    				m = n.Type
    				continue
    			}
    			m = n.Name
    		case *InterfaceType:
    			if l := lastField(n.MethodList); l != nil {
    				m = l
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 17:49:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/parser.go

    	if tag != nil {
    		for i := len(styp.FieldList) - len(styp.TagList); i > 0; i-- {
    			styp.TagList = append(styp.TagList, nil)
    		}
    		styp.TagList = append(styp.TagList, tag)
    	}
    
    	f := new(Field)
    	f.pos = pos
    	f.Name = name
    	f.Type = typ
    	styp.FieldList = append(styp.FieldList, f)
    
    	if debug && tag != nil && len(styp.FieldList) != len(styp.TagList) {
    		panic("inconsistent struct field list")
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_node_status_test.go

    func generateImageTags() []string {
    	var tagList []string
    	// Generate > MaxNamesPerImageInNodeStatus tags so that the test can verify
    	// that kubelet report up to MaxNamesPerImageInNodeStatus tags.
    	count := rand.IntnRange(nodestatus.MaxNamesPerImageInNodeStatus+1, maxImageTagsForTest+1)
    	for ; count > 0; count-- {
    		tagList = append(tagList, "registry.k8s.io:v"+strconv.Itoa(count))
    	}
    	return tagList
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
Back to top