Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 370 for biglen (0.13 sec)

  1. src/internal/abi/map.go

    	MapBucketCount     = 1 << MapBucketCountBits
    
    	// Maximum key or elem size to keep inline (instead of mallocing per element).
    	// Must fit in a uint8.
    	// Note: fast map functions cannot handle big elems (bigger than MapMaxElemBytes).
    	MapMaxKeyBytes  = 128
    	MapMaxElemBytes = 128 // Must fit in a uint8.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 20:09:01 UTC 2024
    - 719 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/ip.go

    	return d.Addr
    }
    
    // Size returns the size of the IP address in bytes.
    // Used in the size estimation of the runtime cost.
    func (d IP) Size() ref.Val {
    	return types.Int(int(math.Ceil(float64(d.Addr.BitLen()) / 8)))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 11:02:33 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/outbuf.go

    func (out *OutBuf) writeLoc(lenToWrite int64) (int64, []byte) {
    	// See if we have enough space in the mmaped area.
    	bufLen := int64(len(out.buf))
    	if out.off+lenToWrite <= bufLen {
    		return out.off, out.buf
    	}
    
    	// Not enough space in the mmaped area, write to heap area instead.
    	heapPos := out.off - bufLen
    	heapLen := int64(len(out.heap))
    	lenNeeded := heapPos + lenToWrite
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 19:51:29 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  4. src/reflect/makefunc.go

    	// makeFuncImpl contains a stack map for use by the runtime
    	_, _, abid := funcLayout(ftyp, nil)
    
    	impl := &makeFuncImpl{
    		makeFuncCtxt: makeFuncCtxt{
    			fn:      code,
    			stack:   abid.stackPtrs,
    			argLen:  abid.stackCallArgsSize,
    			regPtrs: abid.inRegPtrs,
    		},
    		ftyp: ftyp,
    		fn:   fn,
    	}
    
    	return Value{t, unsafe.Pointer(impl), flag(Func)}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:20:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. src/internal/syscall/windows/registry/value.go

    		err = regLoadMUIString(syscall.Handle(k), pname, &buf[0], uint32(len(buf)), &buflen, 0, pdir)
    	}
    
    	for err == syscall.ERROR_MORE_DATA { // Grow buffer if needed
    		if buflen <= uint32(len(buf)) {
    			break // Buffer not growing, assume race; break
    		}
    		buf = make([]uint16, buflen)
    		err = regLoadMUIString(syscall.Handle(k), pname, &buf[0], uint32(len(buf)), &buflen, 0, pdir)
    	}
    
    	if err != nil {
    		return "", err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. docs/em/docs/tutorial/dependencies/global-dependencies.md

    &amp; 🌐 💭 📄 🔃 [❎ `dependencies` *➡ 🛠️ 👨‍🎨*](dependencies-in-path-operation-decorators.md){.internal-link target=_blank} ✔, ✋️ 👉 💼, 🌐 *➡ 🛠️* 📱.
    
    ## 🔗 👪 *➡ 🛠️*
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Apr 01 09:26:04 UTC 2023
    - 828 bytes
    - Viewed (0)
  7. docs_src/bigger_applications/app_an_py39/main.py

        prefix="/admin",
        tags=["admin"],
        dependencies=[Depends(get_token_header)],
        responses={418: {"description": "I'm a teapot"}},
    )
    
    
    @app.get("/")
    async def root():
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 552 bytes
    - Viewed (0)
  8. src/net/netip/netip_pkg_test.go

    		{mustIP("10.0.0.1"), 32},
    		{mustIP("::"), 128},
    		{mustIP("fed0::1"), 128},
    		{mustIP("::ffff:10.0.0.1"), 128},
    	}
    	for _, tt := range tests {
    		got := tt.ip.BitLen()
    		if got != tt.want {
    			t.Errorf("BitLen(%v) = %d; want %d", tt.ip, got, tt.want)
    		}
    	}
    }
    
    func TestPrefixContains(t *testing.T) {
    	tests := []struct {
    		ipp  Prefix
    		ip   Addr
    		want bool
    	}{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 02 15:37:19 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. docs/ru/docs/tutorial/dependencies/global-dependencies.md

    ## Зависимости для групп *операций пути*
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    //sys	GetUserProfileDirectory(t Token, dir *uint16, dirLen *uint32) (err error) = userenv.GetUserProfileDirectoryW
    //sys	getSystemDirectory(dir *uint16, dirLen uint32) (len uint32, err error) = kernel32.GetSystemDirectoryW
    //sys	getWindowsDirectory(dir *uint16, dirLen uint32) (len uint32, err error) = kernel32.GetWindowsDirectoryW
    //sys	getSystemWindowsDirectory(dir *uint16, dirLen uint32) (len uint32, err error) = kernel32.GetSystemWindowsDirectoryW
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
Back to top