Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 225 for goio (0.04 sec)

  1. docs/vi/docs/python-types.md

    **FastAPI** hoàn toàn được dựa trên những gợi ý kiểu dữ liệu, chúng mang đến nhiều ưu điểm và lợi ích.
    
    Nhưng thậm chí nếu bạn không bao giờ sử dụng **FastAPI**, bạn sẽ được lợi từ việc học một ít về chúng.
    
    !!! note
        Nếu bạn là một chuyên gia về Python, và bạn đã biết mọi thứ về gợi ý kiểu dữ liệu, bỏ qua và đi tới chương tiếp theo.
    
    ## Động lực
    
    Hãy bắt đầu với một ví dụ đơn giản:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. docs/vi/docs/tutorial/first-steps.md

    Thông thường, bạn sử dụng
    
    * `POST`: để tạo dữ liệu.
    * `GET`: để đọc dữ liệu.
    * `PUT`: để cập nhật dữ liệu.
    * `DELETE`: để xóa dữ liệu.
    
    Do đó, trong OpenAPI, mỗi phương thức HTTP được gọi là một "toán tử (operation)".
    
    Chúng ta cũng sẽ gọi chúng là "**các toán tử**".
    
    #### Định nghĩa moojt *decorator cho đường dẫn toán tử*
    
    ```Python hl_lines="6"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Sep 02 15:44:17 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/dom_test.go

    			Goto("b28")),
    		Bloc("b29",
    			Goto("b31")),
    		Bloc("b31",
    			Goto("b28")),
    		Bloc("b28",
    			If("p", "b32", "b33")),
    		Bloc("b32",
    			Goto("b21")),
    		Bloc("b21",
    			Goto("b47")),
    		Bloc("b47",
    			If("p", "b45", "b46")),
    		Bloc("b45",
    			Goto("b48")),
    		Bloc("b48",
    			Goto("b49")),
    		Bloc("b49",
    			If("p", "b50", "b51")),
    		Bloc("b50",
    			Goto("b52")),
    		Bloc("b52",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. test/escape2.go

    	goto L30
    	goto L31
    	goto L32
    	goto L33
    	goto L34
    	goto L35
    	goto L36
    	goto L37
    	goto L38
    	goto L39
    	goto L40
    	goto L41
    	goto L42
    	goto L43
    	goto L44
    	goto L45
    	goto L46
    	goto L47
    	goto L48
    	goto L49
    	goto L50
    	goto L51
    	goto L52
    	goto L53
    	goto L54
    	goto L55
    	goto L56
    	goto L57
    	goto L58
    	goto L59
    	goto L60
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  5. src/internal/trace/summary_test.go

    	}
    
    	// Test the function.
    	targetg := trace.GoID(86)
    	got := trace.RelatedGoroutinesV2(events, targetg)
    	want := map[trace.GoID]struct{}{
    		trace.GoID(86):  struct{}{}, // N.B. Result includes target.
    		trace.GoID(71):  struct{}{},
    		trace.GoID(25):  struct{}{},
    		trace.GoID(122): struct{}{},
    	}
    	for goid := range got {
    		if _, ok := want[goid]; ok {
    			delete(want, goid)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. test/escape2n.go

    	goto L30
    	goto L31
    	goto L32
    	goto L33
    	goto L34
    	goto L35
    	goto L36
    	goto L37
    	goto L38
    	goto L39
    	goto L40
    	goto L41
    	goto L42
    	goto L43
    	goto L44
    	goto L45
    	goto L46
    	goto L47
    	goto L48
    	goto L49
    	goto L50
    	goto L51
    	goto L52
    	goto L53
    	goto L54
    	goto L55
    	goto L56
    	goto L57
    	goto L58
    	goto L59
    	goto L60
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  7. src/syscall/exec_linux.go

    		if err1 != 0 {
    			goto childerror
    		}
    		if pid != unsafe.Sizeof(err2) {
    			err1 = EINVAL
    			goto childerror
    		}
    		if err2 != 0 {
    			err1 = err2
    			goto childerror
    		}
    	}
    
    	// Session ID
    	if sys.Setsid {
    		_, _, err1 = RawSyscall(SYS_SETSID, 0, 0, 0)
    		if err1 != 0 {
    			goto childerror
    		}
    	}
    
    	// Set process group
    	if sys.Setpgid || sys.Foreground {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/nilcheck_test.go

    			Valu("sb", OpSB, c.config.Types.Uintptr, 0, nil),
    			Goto(blockn(0)),
    		),
    	)
    	for i := 0; i < depth; i++ {
    		blocs = append(blocs,
    			Bloc(blockn(i),
    				Valu(ptrn(i), OpAddr, ptrType, 0, nil, "sb"),
    				Valu(booln(i), OpIsNonNil, c.config.Types.Bool, 0, nil, ptrn(i)),
    				If(booln(i), blockn(i+1), "exit"),
    			),
    		)
    	}
    	blocs = append(blocs,
    		Bloc(blockn(depth), Goto("exit")),
    		Bloc("exit", Exit("mem")),
    	)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  9. test/return.go

    func _() int {
    } // ERROR "missing return"
    
    func _() int {
    	print(1)
    } // ERROR "missing return"
    
    // return is okay
    func _() int {
    	print(1)
    	return 2
    }
    
    // goto is okay
    func _() int {
    L:
    	print(1)
    	goto L
    }
    
    // panic is okay
    func _() int {
    	print(1)
    	panic(2)
    }
    
    // but only builtin panic
    func _() int {
    	var panic = func(int) {}
    	print(1)
    	panic(2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 32.7K bytes
    - Viewed (0)
  10. pkg/config/model.go

    package config
    
    import (
    	"bytes"
    	"encoding/json"
    	"fmt"
    	"reflect"
    	"time"
    
    	gogojsonpb "github.com/gogo/protobuf/jsonpb" // nolint: depguard
    	gogoproto "github.com/gogo/protobuf/proto"   // nolint: depguard
    	gogotypes "github.com/gogo/protobuf/types"   // nolint: depguard
    	"google.golang.org/protobuf/proto"
    	"google.golang.org/protobuf/reflect/protoreflect"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top