Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for regAssign (0.12 sec)

  1. fastapi/_compat.py

    from pydantic import BaseModel, create_model
    from pydantic.version import VERSION as P_VERSION
    from starlette.datastructures import UploadFile
    from typing_extensions import Annotated, Literal, get_args, get_origin
    
    # Reassign variable to make it reexported for mypy
    PYDANTIC_VERSION = P_VERSION
    PYDANTIC_V2 = PYDANTIC_VERSION.startswith("2.")
    
    
    sequence_annotation_to_type = {
        Sequence: list,
        List: list,
        list: list,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  2. src/compress/flate/inflate.go

    	n := uint(h.min)
    	// Optimization. Compiler isn't smart enough to keep f.b,f.nb in registers,
    	// but is smart enough to keep local variables in registers, so use nb and b,
    	// inline call to moreBits and reassign b,nb back to f on return.
    	nb, b := f.nb, f.b
    	for {
    		for nb < n {
    			c, err := f.r.ReadByte()
    			if err != nil {
    				f.b = b
    				f.nb = nb
    				return 0, noEOF(err)
    			}
    			f.roffset++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  3. hack/tools/go.sum

    github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
    github.com/curioswitch/go-reassign v0.2.0 h1:G9UZyOcpk/d7Gd6mqYgd8XYWFMw/znxwGDUstnC9DIo=
    github.com/curioswitch/go-reassign v0.2.0/go.mod h1:x6OpXuWvgfQaMGks2BZybTngWjT84hqJfKoO8Tt/Roc=
    github.com/daixiang0/gci v0.12.1 h1:ugsG+KRYny1VK4oqrX4Vtj70bo4akYKa0tgT1DXMYiY=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/poset.go

    				po.addchild(i1, r.Target(), r.Strict())
    			}
    			po.setchl(uint32(idx), 0)
    			po.setchr(uint32(idx), 0)
    			po.upush(undoSetChl, uint32(idx), l)
    			po.upush(undoSetChr, uint32(idx), r)
    		}
    	}
    
    	// Reassign all existing IDs that point to i2 to i1.
    	// This includes n2.ID.
    	for k, v := range po.values {
    		if i2s.Test(v) {
    			po.values[k] = i1
    			po.upushalias(k, v)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
Back to top