Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ParamList (3.58 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/form/FormScheme.java

                            }
                            return new BasicNameValuePair(name, value);
                        }).collect(Collectors.toList()));
                if (paramList != null) {
                    parameters.addAll(
                            paramList.stream().map(p -> new BasicNameValuePair(p.getFirst(), p.getSecond())).collect(Collectors.toList()));
                }
                return new UrlEncodedFormEntity(parameters, encoding);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_dispatcher.go

    			// Cannot parse label selector: configuration error
    			return nil, err
    
    		}
    
    		paramList, err := paramStore.List(selector)
    		if err != nil {
    			// There was a bad internal error
    			utilruntime.HandleError(err)
    			return nil, err
    		}
    
    		// Successfully grabbed params
    		params = paramList
    	default:
    		// Should be unreachable due to validation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. src/go/internal/gcimporter/iimport.go

    	}
    }
    
    func (r *importReader) kind() itag {
    	return itag(r.uint64())
    }
    
    func (r *importReader) signature(recv *types.Var, rparams, tparams []*types.TypeParam) *types.Signature {
    	params := r.paramList()
    	results := r.paramList()
    	variadic := params.Len() > 0 && r.bool()
    	return types.NewSignatureType(recv, rparams, tparams, params, results, variadic)
    }
    
    func (r *importReader) tparamList() []*types.TypeParam {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/parser.go

    		}
    		if p.tok == _Rbrack {
    			p.syntaxError("empty type parameter list")
    			p.next()
    		} else {
    			tparamList = p.paramList(nil, nil, _Rbrack, true)
    		}
    	}
    
    	p.want(_Lparen)
    	typ.ParamList = p.paramList(nil, nil, _Rparen, false)
    	typ.ResultList = p.funcResult()
    
    	return tparamList, typ
    }
    
    // "[" has already been consumed, and pos is its position.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/positions.go

    				m = l
    				continue
    			}
    			return n.Pos()
    		case *FuncType:
    			if l := lastField(n.ResultList); l != nil {
    				m = l
    				continue
    			}
    			if l := lastField(n.ParamList); l != nil {
    				m = l
    				continue
    			}
    			return n.Pos()
    		case *MapType:
    			m = n.Value
    		case *ChanType:
    			m = n.Elem
    
    		// statements
    		case *EmptyStmt:
    			return n.Pos()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 17:49:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. src/go/internal/gccgoimporter/parser.go

    		default:
    			p.errorf("internal error: %T on nlist", n)
    		}
    	}
    }
    
    // NamedType = TypeName [ "=" ] Type { Method } .
    // TypeName  = ExportedName .
    // Method    = "func" "(" Param ")" Name ParamList ResultList [InlineBody] ";" .
    func (p *parser) parseNamedType(nlist []any) types.Type {
    	pkg, name := p.parseExportedName()
    	scope := pkg.Scope()
    	obj := scope.Lookup(name)
    	if obj != nil && obj.Type() == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 23:14:07 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/signature.go

    	if recvPar != nil {
    		recvList, _ = check.collectParams(scope, []*syntax.Field{recvPar}, false, scopePos) // use rewritten receiver type, if any
    	}
    	params, variadic := check.collectParams(scope, ftyp.ParamList, true, scopePos)
    	results, _ := check.collectParams(scope, ftyp.ResultList, false, scopePos)
    	scope.Squash(func(obj, alt Object) {
    		err := check.newError(DuplicateDecl)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/resolver.go

    						}
    						if len(s.TParamList) != 0 {
    							check.softErrorf(s.TParamList[0], code, "func %s must have no type parameters", name)
    							hasTParamError = true
    						}
    						if t := s.Type; len(t.ParamList) != 0 || len(t.ResultList) != 0 {
    							check.softErrorf(s.Name, code, "func %s must have no arguments and no return values", name)
    						}
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top