Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 483 for pcap (0.04 sec)

  1. src/cmd/compile/internal/ir/fmt.go

    	OAND:              "&",
    	OAPPEND:           "append",
    	OAS:               "=",
    	OAS2:              "=",
    	OBREAK:            "break",
    	OCALL:             "function call", // not actual syntax
    	OCAP:              "cap",
    	OCASE:             "case",
    	OCLEAR:            "clear",
    	OCLOSE:            "close",
    	OCOMPLEX:          "complex",
    	OBITNOT:           "^",
    	OCONTINUE:         "continue",
    	OCOPY:             "copy",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  2. test/makeslice.go

    	type T []int
    	shouldPanic("len out of range", func() { _ = make(T, int(n)) })
    	shouldPanic("cap out of range", func() { _ = make(T, 0, int(n)) })
    	shouldPanic("len out of range", func() { _ = make(T, uint(n)) })
    	shouldPanic("cap out of range", func() { _ = make(T, 0, uint(n)) })
    	shouldPanic("len out of range", func() { _ = make(T, int64(n)) })
    	shouldPanic("cap out of range", func() { _ = make(T, 0, int64(n)) })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 07 17:50:24 UTC 2020
    - 5.5K bytes
    - Viewed (0)
  3. test/fixedbugs/issue4085b.go

    		shouldPanic("len out of range", func() { _ = make(T, int(n2)) })
    		shouldPanic("cap out of range", func() { _ = make(T, 0, int(n2)) })
    		testMakeInAppend(int(n2))
    		// Test elem.size*cap overflow
    		n2 = 1<<63 - 1
    		shouldPanic("len out of range", func() { _ = make(T, int(n2)) })
    		shouldPanic("cap out of range", func() { _ = make(T, 0, int(n2)) })
    		testMakeInAppend(int(n2))
    		var x uint64 = 1<<64 - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 17 17:18:17 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/allocators.go

    		Len:  n,
    		Cap:  cap(b) * int(scale),
    	}
    	return *(*[]*Block)(unsafe.Pointer(&s))
    }
    func (c *Cache) freeBlockSlice(s []*Block) {
    	var base *Value
    	var derived *Block
    	scale := unsafe.Sizeof(base) / unsafe.Sizeof(derived)
    	b := unsafeheader.Slice{
    		Data: unsafe.Pointer(&s[0]),
    		Len:  int((uintptr(len(s)) + scale - 1) / scale),
    		Cap:  int((uintptr(cap(s)) + scale - 1) / scale),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 15 23:00:54 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. docs/vi/docs/python-types.md

    # Giới thiệu kiểu dữ liệu Python
    
    Python hỗ trợ tùy chọn "type hints" (còn được gọi là "type annotations").
    
    Những **"type hints"** hay chú thích là một cú pháp đặc biệt cho phép khai báo <abbr title="ví dụ: str, int, float, bool"> kiểu dữ liệu</abbr> của một biến.
    
    Bằng việc khai báo kiểu dữ liệu cho các biến của bạn, các trình soạn thảo và các công cụ có thể hỗ trợ bạn tốt hơ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)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/allocator_test.go

    	target := &Allocator{}
    	initialSize := 1000000 // 1MB
    	initialBuff := target.Allocate(uint64(initialSize))
    	if cap(initialBuff) < initialSize {
    		t.Fatalf("unexpected size of the buffer, expected at least 1MB, got: %v", cap(initialBuff))
    	}
    
    	for i := initialSize; i > 0; i = i / 10 {
    		newBuff := target.Allocate(uint64(i))
    		if cap(newBuff) < initialSize {
    			t.Fatalf("allocator is now allowed to shrink memory")
    		}
    		if len(newBuff) != i {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 13:38:29 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  7. test/chancap.go

    	}
    	if len(c) != 3 || cap(c) != 10 {
    		println("chan len/cap ", len(c), cap(c), " want 3 10")
    		panic("fail")
    	}
    
    	c = make(T)
    	if len(c) != 0 || cap(c) != 0 {
    		println("chan len/cap ", len(c), cap(c), " want 0 0")
    		panic("fail")
    	}
    
    	n := -1
    	shouldPanic("makechan: size out of range", func() { _ = make(T, n) })
    	shouldPanic("makechan: size out of range", func() { _ = make(T, int64(n)) })
    	if ptrSize == 8 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 26 14:06:28 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  8. test/ken/array.go

    // Test arrays and slices.
    
    package main
    
    func setpd(a []int) {
    	//	print("setpd a=", a, " len=", len(a), " cap=", cap(a), "\n");
    	for i := 0; i < len(a); i++ {
    		a[i] = i
    	}
    }
    
    func sumpd(a []int) int {
    	//	print("sumpd a=", a, " len=", len(a), " cap=", cap(a), "\n");
    	t := 0
    	for i := 0; i < len(a); i++ {
    		t += a[i]
    	}
    	//	print("sumpd t=", t, "\n");
    	return t
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 2.3K bytes
    - Viewed (0)
  9. docs/vi/docs/features.md

    ![ReDoc](https://fastapi.tiangolo.com/img/index/index-06-redoc-02.png)
    
    ### Chỉ cần phiên bản Python hiện đại
    
    Tất cả được dựa trên khai báo kiểu dữ liệu chuẩn của **Python 3.8** (cảm ơn Pydantic). Bạn không cần học cú pháp mới, chỉ cần biết chuẩn Python hiện đại.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. test/fixedbugs/issue16949.go

    	sink = make([]byte, 0, 1.0)
    	sink = make([]byte, 0, float32(1.0)) // ERROR "non-integer.*cap|must be integer"
    	sink = make([]byte, 0, float64(1.0)) // ERROR "non-integer.*cap|must be integer"
    
    	sink = make([]byte, 1+0i)
    	sink = make([]byte, complex64(1+0i))  // ERROR "non-integer.*len|must be integer"
    	sink = make([]byte, complex128(1+0i)) // ERROR "non-integer.*len|must be integer"
    
    	sink = make([]byte, 0, 1+0i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 23:56:19 UTC 2020
    - 1.1K bytes
    - Viewed (0)
Back to top