Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for udenti (0.49 sec)

  1. docs/zh/docs/tutorial/path-params-numeric-validations.md

    ## 按需对参数排序的技巧
    
    如果你想不使用 `Query` 声明没有默认值的查询参数 `q`,同时使用 `Path` 声明路径参数 `item_id`,并使它们的顺序与上面不同,Python 对此有一些特殊的语法。
    
    传递 `*` 作为函数的第一个参数。
    
    Python 不会对该 `*` 做任何事情,但是它将知道之后的所有参数都应作为关键字参数(键值对),也被称为 <abbr title="来自:K-ey W-ord Arg-uments"><code>kwargs</code></abbr>,来调用。即使它们没有默认值。
    
    ```Python hl_lines="7"
    {!../../../docs_src/path_params_numeric_validations/tutorial003.py!}
    ```
    
    ## 数值校验:大于等于
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Oct 17 05:59:11 GMT 2023
    - 6.3K bytes
    - Viewed (0)
  2. src/cmd/api/main_test.go

    				if strings.HasPrefix(c.Text, "// Deprecated:") {
    					return true
    				}
    			}
    		}
    		return false
    	}
    
    	w.deprecated = make(map[token.Pos]bool)
    	mark := func(id *ast.Ident) {
    		if id != nil {
    			w.deprecated[id.Pos()] = true
    		}
    	}
    	for _, file := range w.current.Files {
    		ast.Inspect(file, func(n ast.Node) bool {
    			switch n := n.(type) {
    			case *ast.File:
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 09 20:48:51 GMT 2024
    - 31.4K bytes
    - Viewed (0)
  3. docs/de/docs/tutorial/path-params-numeric-validations.md

    ```Python hl_lines="7"
    {!../../../docs_src/path_params_numeric_validations/tutorial003.py!}
    ```
    
    ### Besser mit `Annotated`
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 30 17:59:29 GMT 2024
    - 10.2K bytes
    - Viewed (0)
  4. api/except.txt

    pkg syscall (openbsd-amd64), type FdSet struct, Bits [32]int32
    pkg syscall (openbsd-amd64), type Kevent_t struct, Data int32
    pkg syscall (openbsd-amd64), type Kevent_t struct, Ident uint32
    pkg syscall (openbsd-amd64), type Mclpool struct, Grown uint32
    pkg syscall (openbsd-amd64), type RtMetrics struct, Expire uint32
    pkg syscall (openbsd-amd64), type Stat_t struct, Ino uint32
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu May 25 00:13:30 GMT 2023
    - 34.6K bytes
    - Viewed (0)
  5. api/go1.18.txt

    pkg go/types, type Config struct, Context *Context
    pkg go/types, type Config struct, GoVersion string
    pkg go/types, type Context struct
    pkg go/types, type Info struct, Instances map[*ast.Ident]Instance
    pkg go/types, type Instance struct
    pkg go/types, type Instance struct, Type Type
    pkg go/types, type Instance struct, TypeArgs *TypeList
    pkg go/types, type Term struct
    pkg go/types, type TypeList struct
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 13K bytes
    - Viewed (0)
  6. docs/hu/docs/index.md

    
    @app.put("/items/{item_id}")
    def update_item(item_id: int, item: Item):
        return {"item_name": item.name, "item_id": item_id}
    ```
    
    A szerver automatikusan újraindul (mert hozzáadtuk a --reload paramétert a fenti `uvicorn` parancshoz).
    
    ### Interaktív API dokumentáció frissítése
    
    Most menj el a <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a> címre.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 23:58:47 GMT 2024
    - 20.2K bytes
    - Viewed (0)
  7. doc/go1.22.html

          The following declarations related to
          <a href='https://pkg.go.dev/go/ast#Object'>syntactic identifier resolution</a>
          are now <a href="https://go.dev/issue/52463">deprecated</a>:
          <code>Ident.Obj</code>,
          <code>Object</code>,
          <code>Scope</code>,
          <code>File.Scope</code>,
          <code>File.Unresolved</code>,
          <code>Importer</code>,
          <code>Package</code>,
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  8. api/go1.3.txt

    pkg syscall (openbsd-amd64), type FdSet struct, Bits [32]uint32
    pkg syscall (openbsd-amd64), type Kevent_t struct, Data int64
    pkg syscall (openbsd-amd64), type Kevent_t struct, Ident uint64
    pkg syscall (openbsd-amd64), type Mclpool struct, Grown int32
    pkg syscall (openbsd-amd64), type RtMetrics struct, Expire int64
    pkg syscall (openbsd-amd64), type RtMetrics struct, Pad uint32
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  9. api/go1.txt

    pkg go/ast, method (*GoStmt) End() token.Pos
    pkg go/ast, method (*GoStmt) Pos() token.Pos
    pkg go/ast, method (*Ident) End() token.Pos
    pkg go/ast, method (*Ident) IsExported() bool
    pkg go/ast, method (*Ident) Pos() token.Pos
    pkg go/ast, method (*Ident) String() string
    pkg go/ast, method (*IfStmt) End() token.Pos
    pkg go/ast, method (*IfStmt) Pos() token.Pos
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  10. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), type Kevent_t struct, Filter int16
    pkg syscall (freebsd-386-cgo), type Kevent_t struct, Flags uint16
    pkg syscall (freebsd-386-cgo), type Kevent_t struct, Ident uint32
    pkg syscall (freebsd-386-cgo), type Kevent_t struct, Udata *uint8
    pkg syscall (freebsd-386-cgo), type Msghdr struct
    pkg syscall (freebsd-386-cgo), type Msghdr struct, Control *uint8
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
Back to top