Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for biglen (0.39 sec)

  1. fastapi/routing.py

        in another `APIRouter` (ultimately included in the app).
    
        Read more about it in the
        [FastAPI docs for Bigger Applications - Multiple Files](https://fastapi.tiangolo.com/tutorial/bigger-applications/).
    
        ## Example
    
        ```python
        from fastapi import APIRouter, FastAPI
    
        app = FastAPI()
        router = APIRouter()
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  2. fastapi/applications.py

                    [FastAPI docs for Additional Responses in OpenAPI](https://fastapi.tiangolo.com/advanced/additional-responses/).
    
                    And in the
                    [FastAPI docs for Bigger Applications](https://fastapi.tiangolo.com/tutorial/bigger-applications/#include-an-apirouter-with-a-custom-prefix-tags-responses-and-dependencies).
                    """
                ),
            ] = None,
            callbacks: Annotated[
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  3. src/reflect/value.go

    }
    
    func (v Value) bytesSlow() []byte {
    	switch v.kind() {
    	case Slice:
    		if v.typ().Elem().Kind() != abi.Uint8 {
    			panic("reflect.Value.Bytes of non-byte slice")
    		}
    		// Slice is always bigger than a word; assume flagIndir.
    		return *(*[]byte)(v.ptr)
    	case Array:
    		if v.typ().Elem().Kind() != abi.Uint8 {
    			panic("reflect.Value.Bytes of non-byte array")
    		}
    		if !v.CanAddr() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	cleanup = func() {} // no cleanup by default
    
    	var argLen int
    	for _, arg := range cmd.Args {
    		argLen += len(arg)
    	}
    
    	// If we're not approaching 32KB of args, just pass args normally.
    	// (use 30KB instead to be conservative; not sure how accounting is done)
    	if !useResponseFile(cmd.Path, argLen) {
    		return
    	}
    
    	tf, err := os.CreateTemp("", "args")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. src/crypto/x509/x509_test.go

    	tests := []struct {
    		bytes  []byte
    		bitLen int
    	}{
    		{nil, 0},
    		{[]byte{0x00}, 0},
    		{[]byte{0x00, 0x00}, 0},
    		{[]byte{0xf0}, 4},
    		{[]byte{0x88}, 5},
    		{[]byte{0xff}, 8},
    		{[]byte{0xff, 0x80}, 9},
    		{[]byte{0xff, 0x81}, 16},
    	}
    
    	for i, test := range tests {
    		if got := asn1BitLength(test.bytes); got != test.bitLen {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  6. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    FIG. 10.] seen through the Lens AB, appears at the place _q_ from whence the Rays diverge in passing from the Lens to the Eye. Now it is to be noted, that the Image of the Object at _q_ is so much bigger or lesser than the Object it self at Q, as the distance of the Image at _q_ from the Lens AB is bigger or less than the distance of the Object at Q from the same Lens. And if the Object be seen through two or more such Convex or Concave-glasses, every Glass shall make a new Image, and the Object shall...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/entity.go

    	"★":                         "\u2605",
    	"▽":                 "\u25bd",
    	"△":                   "\u25b3",
    	"⨄":                        "\u2a04",
    	"⋁":                          "\u22c1",
    	"⋀":                        "\u22c0",
    	"⤍":                          "\u290d",
    	"⧫":                    "\u29eb",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	dst.LastWriteTime = src.LastWriteTime
    	dst.FileSizeHigh = src.FileSizeHigh
    	dst.FileSizeLow = src.FileSizeLow
    	dst.Reserved0 = src.Reserved0
    	dst.Reserved1 = src.Reserved1
    
    	// The src is 1 element bigger than dst, but it must be NUL.
    	copy(dst.FileName[:], src.FileName[:])
    	copy(dst.AlternateFileName[:], src.AlternateFileName[:])
    }
    
    type ByHandleFileInformation struct {
    	FileAttributes     uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  9. cmd/object-handlers.go

    	}
    
    	objAPI := api.ObjectAPI()
    	if objAPI == nil {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrServerNotInitialized), r.URL)
    		return
    	}
    
    	// Tags XML will not be bigger than 1MiB in size, fail if its bigger.
    	tags, err := tags.ParseObjectXML(io.LimitReader(r.Body, 1<<20))
    	if err != nil {
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      }
    
      // Specialization for bf16 type.
      if (getType().cast<ShapedType>().getElementType().isBF16()) {
        return ConstFoldBinaryOp<FloatAttr, Eigen::bfloat16>(
            getType(), operands[0], operands[1],
            [](Eigen::bfloat16 a, Eigen::bfloat16 b) { return a * b; });
      }
    
      // Generic fallback with APFloat
      return ConstFoldBinaryOp(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top