Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for FieldList (0.21 sec)

  1. src/main/java/org/codelibs/fess/util/FacetResponse.java

            return queryCountMap;
        }
    
        /**
         * @return the fieldList
         */
        public List<Field> getFieldList() {
            return fieldList;
        }
    
        @Override
        public String toString() {
            return "FacetResponse [queryCountMap=" + queryCountMap + ", fieldList=" + fieldList + "]";
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java

            }
    
            final List<String> fieldList = new ArrayList<>(item1.getFields().length + item2.getFields().length);
            Collections.addAll(fieldList, item1.getFields());
            for (final String field : item2.getFields()) {
                if (!fieldList.contains(field)) {
                    fieldList.add(field);
                }
            }
            mergedItem.fields = fieldList.toArray(new String[fieldList.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)
  3. src/go/ast/ast.go

    		TypeParams *FieldList // type parameters; or nil
    		Params     *FieldList // (incoming) parameters; non-nil
    		Results    *FieldList // (outgoing) results; or nil
    	}
    
    	// An InterfaceType node represents an interface type.
    	InterfaceType struct {
    		Interface  token.Pos  // position of "interface" keyword
    		Methods    *FieldList // list of embedded interfaces, methods, or types
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/struct.go

    // Implementation
    
    func (s *Struct) markComplete() {
    	if s.fields == nil {
    		s.fields = make([]*Var, 0)
    	}
    }
    
    func (check *Checker) structType(styp *Struct, e *syntax.StructType) {
    	if e.FieldList == nil {
    		styp.markComplete()
    		return
    	}
    
    	// struct fields and tags
    	var fields []*Var
    	var tags []string
    
    	// for double-declaration checks
    	var fset objset
    
    	// current field typ and tag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. src/cmd/doc/pkg.go

    		typ.Methods = trimUnexportedFields(typ.Methods, true)
    	}
    }
    
    // trimUnexportedFields returns the field list trimmed of unexported fields.
    func trimUnexportedFields(fields *ast.FieldList, isInterface bool) *ast.FieldList {
    	what := "methods"
    	if !isInterface {
    		what = "fields"
    	}
    
    	trimmed := false
    	list := make([]*ast.Field, 0, len(fields.List))
    	for _, field := range fields.List {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    			if r == nil {
    				return nil
    			}
    			returns = append(returns, &ast.Field{
    				Type: r,
    			})
    		}
    		return &ast.FuncType{
    			Params: &ast.FieldList{
    				List: params,
    			},
    			Results: &ast.FieldList{
    				List: returns,
    			},
    		}
    	case interface{ Obj() *types.TypeName }: // *types.{Alias,Named,TypeParam}
    		if t.Obj().Pkg() == nil {
    			return ast.NewIdent(t.Obj().Name())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. src/go/types/signature.go

    // ----------------------------------------------------------------------------
    // Implementation
    
    // funcType type-checks a function or method type.
    func (check *Checker) funcType(sig *Signature, recvPar *ast.FieldList, ftyp *ast.FuncType) {
    	check.openScope(ftyp, "function")
    	check.scope.isFunc = true
    	check.recordScope(ftyp, check.scope)
    	sig.scope = check.scope
    	defer check.closeScope()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. src/go/ast/example_test.go

    	//     14  .  .  .  .  .  Decl: *(obj @ 7)
    	//     15  .  .  .  .  }
    	//     16  .  .  .  }
    	//     17  .  .  .  Type: *ast.FuncType {
    	//     18  .  .  .  .  Func: 3:1
    	//     19  .  .  .  .  Params: *ast.FieldList {
    	//     20  .  .  .  .  .  Opening: 3:10
    	//     21  .  .  .  .  .  Closing: 3:11
    	//     22  .  .  .  .  }
    	//     23  .  .  .  }
    	//     24  .  .  .  Body: *ast.BlockStmt {
    	//     25  .  .  .  .  Lbrace: 3:13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:44:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/positions.go

    			}
    			return n.Pos()
    
    		// types
    		case *ArrayType:
    			m = n.Elem
    		case *SliceType:
    			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
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 17:49:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. src/go/ast/filter.go

    	case *Ident:
    		return t
    	case *SelectorExpr:
    		if _, ok := t.X.(*Ident); ok {
    			return t.Sel
    		}
    	case *StarExpr:
    		return fieldName(t.X)
    	}
    	return nil
    }
    
    func filterFieldList(fields *FieldList, filter Filter, export bool) (removedFields bool) {
    	if fields == nil {
    		return false
    	}
    	list := fields.List
    	j := 0
    	for _, f := range list {
    		keepField := false
    		if len(f.Names) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top