Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,043 for qParams (0.12 sec)

  1. docs/en/docs/tutorial/header-params.md

    Sebastián Ramírez <******@****.***> 1697522351 +0400
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. docs/ja/docs/tutorial/header-params.md

    SwftAlpc <******@****.***> 1602942939 +0900
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Oct 17 13:55:39 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  3. docs/tr/docs/tutorial/cookie-params.md

    Hasan Sezer Taşan <******@****.***> 1715715304 +0300
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue May 14 19:35:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/map.go

    				// hasher.
    				ptrMap:     h.ptrMap,
    				sigTParams: tparams,
    			}
    		}
    
    		for i := 0; i < tparams.Len(); i++ {
    			tparam := tparams.At(i)
    			hash += 7 * h.Hash(tparam.Constraint())
    		}
    
    		return hash + 3*h.hashTuple(t.Params()) + 5*h.hashTuple(t.Results())
    
    	case *types.Union:
    		return h.hashUnion(t)
    
    	case *types.Interface:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    		return nil // not variadic
    	}
    
    	params := sig.Params()
    	nparams := params.Len() // variadic => nonzero
    
    	args := params.At(nparams - 1)
    	iface, ok := args.Type().(*types.Slice).Elem().(*types.Interface)
    	if !ok || !iface.Empty() {
    		return nil // final (args) param is not ...interface{}
    	}
    
    	// Is second last param 'format string'?
    	var format *types.Var
    	if nparams >= 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/type.go

    	return src.NoXPos
    }
    
    func (t *Type) RParams() []*Type {
    	if t.rparams == nil {
    		return nil
    	}
    	return *t.rparams
    }
    
    func (t *Type) SetRParams(rparams []*Type) {
    	if len(rparams) == 0 {
    		base.Fatalf("Setting nil or zero-length rparams")
    	}
    	t.rparams = &rparams
    	// HasShape should be set if any type argument is or has a shape type.
    	for _, rparam := range rparams {
    		if rparam.HasShape() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ir/func.go

    	OClosure *ClosureExpr // OCLOSURE node
    
    	// ONAME nodes for all params/locals for this func/closure, does NOT
    	// include closurevars until transforming closures during walk.
    	// Names must be listed PPARAMs, PPARAMOUTs, then PAUTOs,
    	// with PPARAMs and PPARAMOUTs in order corresponding to the function signature.
    	// Anonymous and blank params are declared as ~pNN (for PPARAMs) and ~rNN (for PPARAMOUTs).
    	Dcl []*Name
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go

    		a.apply(n, "Elt", nil, n.Elt)
    
    	case *ast.StructType:
    		a.apply(n, "Fields", nil, n.Fields)
    
    	case *ast.FuncType:
    		if tparams := n.TypeParams; tparams != nil {
    			a.apply(n, "TypeParams", nil, tparams)
    		}
    		a.apply(n, "Params", nil, n.Params)
    		a.apply(n, "Results", nil, n.Results)
    
    	case *ast.InterfaceType:
    		a.apply(n, "Methods", nil, n.Methods)
    
    	case *ast.MapType:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  9. src/cmd/doc/pkg.go

    		sep := " "
    		if n.Assign.IsValid() {
    			sep = " = "
    		}
    		tparams := pkg.formatTypeParams(n.TypeParams, depth)
    		return fmt.Sprintf("type %s%s%s%s", n.Name.Name, tparams, sep, pkg.oneLineNodeDepth(n.Type, depth))
    
    	case *ast.FuncType:
    		var params []string
    		if n.Params != nil {
    			for _, field := range n.Params.List {
    				params = append(params, pkg.oneLineField(field, depth))
    			}
    		}
    		needParens := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	}
    
    	re = &RequiresExpr{Params: params, Requirements: requirements}
    	if r := fn(re); r != nil {
    		return r
    	}
    	return re
    }
    
    func (re *RequiresExpr) GoString() string {
    	return re.goString(0, "")
    }
    
    func (re *RequiresExpr) goString(indent int, field string) string {
    	var params strings.Builder
    	if len(re.Params) == 0 {
    		fmt.Fprintf(&params, "%*sParams: nil", indent+2, "")
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top