Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for LAY (0.02 sec)

  1. src/hash/crc64/crc64.go

    type digest struct {
    	crc uint64
    	tab *Table
    }
    
    // New creates a new hash.Hash64 computing the CRC-64 checksum using the
    // polynomial represented by the [Table]. Its Sum method will lay the
    // value out in big-endian byte order. The returned Hash64 also
    // implements [encoding.BinaryMarshaler] and [encoding.BinaryUnmarshaler] to
    // marshal and unmarshal the internal state of the hash.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. src/cmd/internal/gcprog/gcprog.go

    // use a Repeat to describe c elements of n bits each,
    // compared to just emitting c copies of the n-bit description.
    func (w *Writer) ShouldRepeat(n, c int64) bool {
    	// Should we lay out the bits directly instead of
    	// encoding them as a repetition? Certainly if count==1,
    	// since there's nothing to repeat, but also if the total
    	// size of the plain pointer bits for the type will fit in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  3. src/fmt/example_test.go

    	if err != nil {
    		fmt.Fprintf(os.Stderr, "Fprintf: %v\n", err)
    	}
    	fmt.Printf("%d bytes written.\n", n)
    
    	// Output:
    	// Kim is 22 years old.
    	// 21 bytes written.
    }
    
    // Print, Println, and Printf lay out their arguments differently. In this example
    // we can compare their behaviors. Println always adds blanks between the items it
    // prints, while Print adds blanks only between non-string arguments and Printf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 21:03:10 UTC 2019
    - 11.8K bytes
    - Viewed (0)
  4. docs/vi/docs/tutorial/first-steps.md

        Cú pháp `@something` trong Python được gọi là một "decorator".
    
        Bạn đặt nó trên một hàm. Giống như một chiếc mũ xinh xắn (Tôi ddonas đó là lí do mà thuật ngữ này ra đời).
    
        Một "decorator" lấy một hàm bên dưới và thực hiện một vài thứ với nó.
    
        Trong trường hợp của chúng ta, decorator này nói **FastAPI** rằng hàm bên dưới ứng với **đường dẫn** `/` và một **toán tử** `get`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Sep 02 15:44:17 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/amd64/asm.go

    			// to the relocation target. So it can be examined statically
    			// (e.g. go version).
    			return true
    		}
    
    		if target.IsDarwin() {
    			// Mach-O relocations are a royal pain to lay out.
    			// They use a compact stateful bytecode representation.
    			// Here we record what are needed and encode them later.
    			ld.MachoAddRebase(s, int64(r.Off()))
    			// Not mark r done here. So we still apply it statically,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 21K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/complit.go

    	case ir.OSTRUCTLIT, ir.OARRAYLIT:
    		n := n.(*ir.CompLitExpr)
    		if !t.IsStruct() && !t.IsArray() {
    			base.Fatalf("anylit: not struct/array")
    		}
    
    		if isSimpleName(var_) && len(n.List) > 4 {
    			// lay out static data
    			vstat := readonlystaticname(t)
    
    			ctxt := inInitFunction
    			if n.Op() == ir.OARRAYLIT {
    				ctxt = inNonInitFunction
    			}
    			fixedlit(ctxt, initKindStatic, n, vstat, init)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:03:54 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  7. docs/vi/docs/index.md

    ![Swagger UI interaction](https://fastapi.tiangolo.com/img/index/index-04-swagger-03.png)
    
    * Sau khi click vào nút "Execute", giao diện người dùng sẽ giao tiếp với API của bạn bao gồm: gửi các tham số, lấy kết quả và hiển thị chúng trên màn hình:
    
    ![Swagger UI interaction](https://fastapi.tiangolo.com/img/index/index-05-swagger-04.png)
    
    ### Nâng cấp tài liệu API thay thế
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/arm/asm.go

    		fallthrough
    	case objabi.R_CALLARM:
    		var t int64
    		// ldr.SymValue(rs) == 0 indicates a cross-package jump to a function that is not yet
    		// laid out. Conservatively use a trampoline. This should be rare, as we lay out packages
    		// in dependency order.
    		if ldr.SymValue(rs) != 0 {
    			// Workaround for issue #58425: it appears that the
    			// external linker doesn't always take into account the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  9. src/cmd/link/internal/arm64/asm.go

    			// to the relocation target. So it can be examined statically
    			// (e.g. go version).
    			return true
    		}
    
    		if target.IsDarwin() {
    			// Mach-O relocations are a royal pain to lay out.
    			// They use a compact stateful bytecode representation.
    			// Here we record what are needed and encode them later.
    			ld.MachoAddRebase(s, int64(r.Off()))
    			// Not mark r done here. So we still apply it statically,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/data.go

    // 'archrelocvariant' functions for the architecture. When external
    // linking is in effect, it may not be  possible to completely resolve
    // the address/offset for a symbol, in which case the goal is to lay
    // the groundwork for turning a given relocation into an external reloc
    // (to be applied by the external linker). For more on how relocations
    // work in general, see
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top