Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for paramList (0.2 sec)

  1. src/main/java/org/codelibs/curl/CurlRequest.java

        }
    
        public CurlRequest param(final String key, final String value) {
            if (value == null) {
                return this;
            }
            if (paramList == null) {
                paramList = new ArrayList<>();
            }
            paramList.add(encode(key) + "=" + encode(value));
            return this;
        }
    
        public CurlRequest header(final String key, final String value) {
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Sun Feb 12 12:21:25 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/compile/internal/syntax/nodes_test.go

    	testPos(t, types, "package p; func f(", ")",
    		func(f *File) Node { return f.DeclList[0].(*FuncDecl).Type.ParamList[0].Type },
    	)
    
    	testPos(t, fields, "package p; func f(", ")",
    		func(f *File) Node { return f.DeclList[0].(*FuncDecl).Type.ParamList[0] },
    	)
    
    	testPos(t, stmts, "package p; func _() { ", "; }",
    		func(f *File) Node { return f.DeclList[0].(*FuncDecl).Body.List[0] },
    	)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 18:45:06 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  4. src/go/internal/gcimporter/iimport.go

    }
    
    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 {
    	n := r.uint64()
    	if n == 0 {
    		return nil
    	}
    	xs := make([]*types.TypeParam, n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/parser.go

    	typ.ParamList = p.paramList(nil, nil, _Rparen, false)
    	typ.ResultList = p.funcResult()
    
    	return tparamList, typ
    }
    
    // "[" has already been consumed, and pos is its position.
    // If len != nil it is the already consumed array length.
    func (p *parser) arrayType(pos Pos, len Expr) Expr {
    	if trace {
    		defer p.trace("arrayType")()
    	}
    
    	if len == nil && !p.got(_DotDotDot) {
    		p.xnest++
    		len = p.expr()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/cmd/compile/internal/syntax/walk.go

    		}
    
    	case *TypeDecl:
    		w.node(n.Name)
    		w.fieldList(n.TParamList)
    		w.node(n.Type)
    
    	case *VarDecl:
    		w.nameList(n.NameList)
    		if n.Type != nil {
    			w.node(n.Type)
    		}
    		if n.Values != nil {
    			w.node(n.Values)
    		}
    
    	case *FuncDecl:
    		if n.Recv != nil {
    			w.node(n.Recv)
    		}
    		w.node(n.Name)
    		w.fieldList(n.TParamList)
    		w.node(n.Type)
    		if n.Body != nil {
    			w.node(n.Body)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:55:04 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/compile/internal/syntax/nodes.go

    		node
    	}
    
    	// interface { MethodList[0]; MethodList[1]; ... }
    	InterfaceType struct {
    		MethodList []*Field
    		expr
    	}
    
    	FuncType struct {
    		ParamList  []*Field
    		ResultList []*Field
    		expr
    	}
    
    	// map[Key]Value
    	MapType struct {
    		Key, Value Expr
    		expr
    	}
    
    	//   chan Elem
    	// <-chan Elem
    	// chan<- Elem
    	ChanType struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top