Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for bigptr (0.14 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/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)
  5. src/cmd/vendor/rsc.io/markdown/entity.go

    	"⨀":                         "\u2a00",
    	"⨁":                        "\u2a01",
    	"⨂":                       "\u2a02",
    	"⨆":                        "\u2a06",
    	"★":                         "\u2605",
    	"▽":                 "\u25bd",
    	"△":                   "\u25b3",
    	"⨄":                        "\u2a04",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  6. src/html/entity.go

    		"bigodot;":                         '\U00002A00',
    		"bigoplus;":                        '\U00002A01',
    		"bigotimes;":                       '\U00002A02',
    		"bigsqcup;":                        '\U00002A06',
    		"bigstar;":                         '\U00002605',
    		"bigtriangledown;":                 '\U000025BD',
    		"bigtriangleup;":                   '\U000025B3',
    		"biguplus;":                        '\U00002A04',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/compile/internal/ssa/rewriteMIPS.go

    		}
    		v.reset(OpMIPSMOVHUload)
    		v.AddArg2(ptr, mem)
    		return true
    	}
    	// match: (Load <t> ptr mem)
    	// cond: (is32BitInt(t) || isPtr(t))
    	// result: (MOVWload ptr mem)
    	for {
    		t := v.Type
    		ptr := v_0
    		mem := v_1
    		if !(is32BitInt(t) || isPtr(t)) {
    			break
    		}
    		v.reset(OpMIPSMOVWload)
    		v.AddArg2(ptr, mem)
    		return true
    	}
    	// match: (Load <t> ptr mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K 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. src/runtime/proc.go

    		// with no g, so gp could nil. The other nil checks are done out of
    		// caution, but not expected to be nil in practice.
    		var tagPtr *unsafe.Pointer
    		if gp != nil && gp.m != nil && gp.m.curg != nil {
    			tagPtr = &gp.m.curg.labels
    		}
    		cpuprof.add(tagPtr, stk[:n])
    
    		gprof := gp
    		var mp *m
    		var pp *p
    		if gp != nil && gp.m != nil {
    			if gp.m.curg != nil {
    				gprof = gp.m.curg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top